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

/vbox/src/VBox/Devices/EFI/Firmware/CryptoPkg/Library/BaseCryptLib/Pk/
H A DCryptX509.c41 BIO *CertBio; local
57 CertBio = BIO_new (BIO_s_mem ());
58 BIO_write (CertBio, Cert, (int) CertSize);
59 if (CertBio == NULL) {
62 X509Cert = d2i_X509_bio (CertBio, NULL);
74 BIO_free (CertBio);
247 BIO *CertBio; local
271 CertBio = BIO_new (BIO_s_mem ());
272 if (CertBio == NULL) {
276 Result = i2d_X509_bio (CertBio, X509Cer
[all...]
H A DCryptPkcs7.c616 BIO *CertBio; local
635 CertBio = NULL;
676 CertBio = BIO_new (BIO_s_mem ());
677 BIO_write (CertBio, TrustedCert, (int)CertLength);
678 if (CertBio == NULL) {
681 Cert = d2i_X509_bio (CertBio, NULL);
720 BIO_free (CertBio);

Completed in 42 milliseconds