Lines Matching defs:bio
16 #include <openssl/bio.h>
721 BIO *bio = BIO_new(BIO_s_mem());
723 ret = PEM_write_bio_PUBKEY(bio, pkey);
731 ret = PEM_write_bio_PrivateKey_ex(bio, pkey, NULL, NULL, 0, NULL, NULL,
743 BIO_free(bio);
1862 BIO *bio = NULL;
1868 bio = BIO_new_mem_buf(pubkey, strlen(pubkey));
1869 if (!TEST_true(bio != NULL))
1872 pkey = PEM_read_bio_PUBKEY_ex(bio, NULL, NULL, NULL, testctx, testpropq);
1904 BIO_free(bio);