Searched defs:CertStore (Results 1 - 2 of 2) sorted by relevance

/vbox/src/VBox/Devices/EFI/Firmware/CryptoPkg/Library/BaseCryptLib/Pk/
H A DCryptX509.c483 X509_STORE *CertStore; local
496 CertStore = NULL;
524 CertStore = X509_STORE_new ();
525 if (CertStore == NULL) {
528 if (!(X509_STORE_add_cert (CertStore, X509CACert))) {
535 if (!X509_STORE_CTX_init (&CertCtx, CertStore, X509Cert, NULL)) {
551 X509_STORE_free (CertStore);
H A DCryptPkcs7.c620 X509_STORE *CertStore; local
638 CertStore = NULL;
689 CertStore = X509_STORE_new ();
690 if (CertStore == NULL) {
693 if (!(X509_STORE_add_cert (CertStore, Cert))) {
701 CertStore->verify_cb = X509VerifyCb;
713 Status = (BOOLEAN) PKCS7_verify (Pkcs7, NULL, CertStore, DataBio, NULL, PKCS7_BINARY);
722 X509_STORE_free (CertStore);

Completed in 87 milliseconds