]>
git.saurik.com Git - apple/security.git/blob - SecurityTests/regressions/kc/kc-30-trust.c
1 #include <Security/SecTrust.h>
6 static void tests(void)
8 SecTrustRef trust
= NULL
;
10 ok_status(SecTrustCreateWithCertificates(NULL
, NULL
, &trust
),
11 "create empty trust");
12 ok(trust
, "trust not NULL");
16 int main(int argc
, char *const *argv
)