Lines Matching refs:bio_in
2800 BIO * bio_in = NULL; in PHP_FUNCTION() local
2811 bio_in = BIO_new(BIO_s_mem()); in PHP_FUNCTION()
2813 if (0 >= BIO_write(bio_in, zp12, (int)zp12_len)) { in PHP_FUNCTION()
2818 if (d2i_PKCS12_bio(bio_in, &p12) && PKCS12_parse(p12, pass, &pkey, &cert, &ca)) { in PHP_FUNCTION()
2884 BIO_free(bio_in); in PHP_FUNCTION()
5887 BIO * bio_in = NULL, * bio_out = NULL; in PHP_FUNCTION() local
5900 bio_in = BIO_new(BIO_s_mem()); in PHP_FUNCTION()
5901 if (bio_in == NULL) { in PHP_FUNCTION()
5905 if (0 >= BIO_write(bio_in, p7b, (int)p7b_len)) { in PHP_FUNCTION()
5910 p7 = PEM_read_bio_PKCS7(bio_in, NULL, NULL, NULL); in PHP_FUNCTION()
5971 BIO_free(bio_in); in PHP_FUNCTION()
6535 BIO * bio_in = NULL, * bio_out = NULL; in PHP_FUNCTION() local
6548 bio_in = BIO_new(BIO_s_mem()); in PHP_FUNCTION()
6549 if (bio_in == NULL) { in PHP_FUNCTION()
6553 if (0 >= BIO_write(bio_in, p7b, (int)p7b_len)) { in PHP_FUNCTION()
6558 cms = PEM_read_bio_CMS(bio_in, NULL, NULL, NULL); in PHP_FUNCTION()
6612 BIO_free(bio_in); in PHP_FUNCTION()