Searched refs:cipher_algo (Results 1 – 7 of 7) sorted by relevance
/php-src/ext/openssl/tests/ |
H A D | openssl_cms_encrypt_basic.phpt | 26 var_dump(openssl_cms_encrypt($infile, $outfile, $single_cert, $headers, cipher_algo: $cipher)); 27 …l_cms_encrypt($infile, $outfile, openssl_x509_read($single_cert), $headers, cipher_algo: $cipher)); 30 var_dump(openssl_cms_encrypt($infile, $outfile, $single_cert, $assoc_headers, cipher_algo: $cipher)… 31 var_dump(openssl_cms_encrypt($infile, $outfile, $single_cert, $empty_headers, cipher_algo: $cipher)… 32 var_dump(openssl_cms_encrypt($wrong, $outfile, $single_cert, $headers, cipher_algo: $cipher)); 33 var_dump(openssl_cms_encrypt($empty, $outfile, $single_cert, $headers, cipher_algo: $cipher)); 34 var_dump(openssl_cms_encrypt($infile, $empty, $single_cert, $headers, cipher_algo: $cipher)); 35 var_dump(openssl_cms_encrypt($infile, $outfile, $wrong, $headers, cipher_algo: $cipher)); 36 var_dump(openssl_cms_encrypt($infile, $outfile, $empty, $headers, cipher_algo: $cipher)); 37 var_dump(openssl_cms_encrypt($infile, $outfile, $multi_certs, $headers, cipher_algo: $cipher)); [all …]
|
H A D | openssl_cipher_iv_length_error.phpt | 21 openssl_cipher_iv_length(): Argument #1 ($cipher_algo) must not be empty
|
H A D | openssl_cipher_key_length_error.phpt | 21 openssl_cipher_key_length(): Argument #1 ($cipher_algo) must not be empty
|
H A D | openssl_cms_decrypt_basic.phpt | 20 openssl_cms_encrypt($infile, $encrypted, $single_cert, $headers, cipher_algo: $cipher);
|
/php-src/ext/openssl/ |
H A D | openssl.stub.php | 541 … $output_filename, $certificate, ?array $headers, int $flags = 0, int $cipher_algo = OPENSSL_CIPHE… 560 …$headers, int $flags = 0, int $encoding = OPENSSL_ENCODING_SMIME, int $cipher_algo = OPENSSL_CIPHE… 651 function openssl_decrypt(string $data, string $cipher_algo, #[\SensitiveParameter] string $passphra… 653 function openssl_cipher_iv_length(string $cipher_algo): int|false {} 655 function openssl_cipher_key_length(string $cipher_algo): int|false {}
|
H A D | openssl_arginfo.h | 178 ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, cipher_algo, IS_LONG, 0, "OPENSSL_CIPHER_AES_128_CBC") 222 ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, cipher_algo, IS_LONG, 0, "OPENSSL_CIPHER_AES_128_CBC") 299 ZEND_ARG_TYPE_INFO(0, cipher_algo, IS_STRING, 0) 308 ZEND_ARG_TYPE_INFO(0, cipher_algo, IS_STRING, 0) 331 ZEND_ARG_TYPE_INFO(0, cipher_algo, IS_STRING, 0) 342 ZEND_ARG_TYPE_INFO(0, cipher_algo, IS_STRING, 0) 351 ZEND_ARG_TYPE_INFO(0, cipher_algo, IS_STRING, 0)
|
H A D | openssl.c | 1011 zend_long cipher_algo = Z_LVAL_P(item); in php_openssl_parse_config() local 1012 const EVP_CIPHER* cipher = php_openssl_get_evp_cipher_from_algo(cipher_algo); in php_openssl_parse_config()
|
Completed in 33 milliseconds