HomeSort by relevance Sort by last modified time
    Searched refs:DataBio (Results 1 - 2 of 2) sorted by null

  /device/linaro/bootloader/edk2/CryptoPkg/Library/BaseCryptLib/Pk/
CryptPkcs7Sign.c 61 BIO *DataBio;
79 DataBio = NULL;
126 DataBio = BIO_new (BIO_s_mem ());
127 if (DataBio == NULL) {
131 if (BIO_write (DataBio, InData, (int) InDataSize) <= 0) {
142 DataBio,
198 if (DataBio != NULL) {
199 BIO_free (DataBio);
CryptPkcs7Verify.c 756 BIO *DataBio;
774 DataBio = NULL;
851 DataBio = BIO_new (BIO_s_mem ());
852 if (DataBio == NULL) {
856 if (BIO_write (DataBio, InData, (int) DataLength) <= 0) {
877 Status = (BOOLEAN) PKCS7_verify (Pkcs7, NULL, CertStore, DataBio, NULL, PKCS7_BINARY);
883 BIO_free (DataBio);

Completed in 6916 milliseconds