Lines Matching refs:out
1799 BIO *out = NULL; in PHP_FUNCTION() local
1828 out = BIO_new(BIO_s_mem()); in PHP_FUNCTION()
1829 if (out && PEM_write_bio_PUBKEY(out, pkey)) { in PHP_FUNCTION()
1832 BIO_get_mem_ptr(out, &bio_buf); in PHP_FUNCTION()
1844 BIO_free_all(out); in PHP_FUNCTION()
4472 zval * zpkey, * args = NULL, *out; in PHP_FUNCTION() local
4479 …if (zend_parse_parameters(ZEND_NUM_ARGS(), "zz|s!a!", &zpkey, &out, &passphrase, &passphrase_len, … in PHP_FUNCTION()
4533 ZEND_TRY_ASSIGN_REF_STRINGL(out, bio_mem_ptr, bio_mem_len); in PHP_FUNCTION()
4610 BIO *out; in PHP_FUNCTION() local
4621 out = BIO_new(BIO_s_mem()); in PHP_FUNCTION()
4622 if (!PEM_write_bio_PUBKEY(out, pkey)) { in PHP_FUNCTION()
4623 BIO_free(out); in PHP_FUNCTION()
4627 pbio_len = BIO_get_mem_data(out, &pbio); in PHP_FUNCTION()
4774 BIO_free(out); in PHP_FUNCTION()
5455 BIO * in = NULL, *out = NULL, *datain = NULL; in PHP_FUNCTION() local
5492 out = php_openssl_bio_new_file( in PHP_FUNCTION()
5494 if (out == NULL) { in PHP_FUNCTION()
5504 if (PKCS7_decrypt(p7, key, cert, out, PKCS7_DETACHED)) { in PHP_FUNCTION()
5513 BIO_free(out); in PHP_FUNCTION()
6158 BIO * in = NULL, * out = NULL, * datain = NULL; in PHP_FUNCTION() local
6196 out = php_openssl_bio_new_file( in PHP_FUNCTION()
6198 if (out == NULL) { in PHP_FUNCTION()
6221 if (CMS_decrypt(cms, key, cert, NULL, out, 0)) { in PHP_FUNCTION()
6232 BIO_free(out); in PHP_FUNCTION()