Searched refs:OPENSSL_RAW_DATA (Results 1 – 15 of 15) sorted by relevance
/php-src/ext/openssl/tests/ |
H A D | openssl_decrypt_basic.phpt | 19 $encrypted = openssl_encrypt($data, $method, $password, OPENSSL_RAW_DATA, $iv); 20 $output = openssl_decrypt($encrypted, $method, $password, OPENSSL_RAW_DATA, $iv); 24 $encrypted = openssl_encrypt($padded_data, $method, $password, OPENSSL_RAW_DATA|OPENSSL_ZERO_PADDIN… 25 $output = openssl_decrypt($encrypted, $method, $password, OPENSSL_RAW_DATA|OPENSSL_ZERO_PADDING, $i… 28 $output2 = openssl_decrypt($encrypted, $method, $password, OPENSSL_RAW_DATA|OPENSSL_ZERO_PADDING, $… 30 $output3 = openssl_decrypt($encrypted, $method, $password, OPENSSL_RAW_DATA|OPENSSL_ZERO_PADDING, $…
|
H A D | openssl_decrypt_ocb.phpt | 18 $pt = openssl_decrypt($test['ct'], $method, $test['key'], OPENSSL_RAW_DATA, 24 var_dump(openssl_decrypt($test['ct'], $method, $test['key'], OPENSSL_RAW_DATA, 28 var_dump(openssl_decrypt($test['ct'], $method, $test['key'], OPENSSL_RAW_DATA, 32 var_dump(openssl_decrypt($test['ct'], $method, $test['key'], OPENSSL_RAW_DATA, 36 var_dump(openssl_decrypt($test['ct'], $method, $test['key'], OPENSSL_RAW_DATA,
|
H A D | openssl_decrypt_gcm.phpt | 18 $pt = openssl_decrypt($test['ct'], $method, $test['key'], OPENSSL_RAW_DATA, 24 var_dump(openssl_decrypt($test['ct'], $method, $test['key'], OPENSSL_RAW_DATA, 27 var_dump(openssl_decrypt($test['ct'], $method, $test['key'], OPENSSL_RAW_DATA, 30 var_dump(openssl_decrypt($test['ct'], $method, $test['key'], OPENSSL_RAW_DATA,
|
H A D | openssl_decrypt_ccm.phpt | 19 $pt = openssl_decrypt($test['ct'], $method, $test['key'], OPENSSL_RAW_DATA, 26 var_dump(openssl_decrypt($test['ct'], $method, $test['key'], OPENSSL_RAW_DATA, 29 var_dump(openssl_decrypt($test['ct'], $method, $test['key'], OPENSSL_RAW_DATA, 32 var_dump(openssl_decrypt($test['ct'], $method, $test['key'], OPENSSL_RAW_DATA,
|
H A D | bug72362.phpt | 17 OPENSSL_RAW_DATA | OPENSSL_DONT_ZERO_PAD_KEY 27 OPENSSL_RAW_DATA
|
H A D | bug74099.phpt | 14 $ciphertext = openssl_encrypt($plaintext, 'aes-256-gcm', $key, \OPENSSL_RAW_DATA, $iv, $tag, $aad);
|
H A D | bug71917.phpt | 18 OPENSSL_RAW_DATA | OPENSSL_DONT_ZERO_PAD_KEY
|
H A D | openssl_encrypt_chacha20_poly1305.phpt | 18 $ct = openssl_encrypt($test['pt'], $method, $test['key'], OPENSSL_RAW_DATA,
|
H A D | openssl_encrypt_ccm.phpt | 19 $ct = openssl_encrypt($test['pt'], $method, $test['key'], OPENSSL_RAW_DATA,
|
H A D | openssl_encrypt_gcm.phpt | 18 $ct = openssl_encrypt($test['pt'], $method, $test['key'], OPENSSL_RAW_DATA,
|
H A D | openssl_encrypt_ocb.phpt | 18 $ct = openssl_encrypt($test['pt'], $method, $test['key'], OPENSSL_RAW_DATA,
|
/php-src/ext/openssl/ |
H A D | php_openssl.h | 47 #define OPENSSL_RAW_DATA 1 macro
|
H A D | openssl.stub.php | 361 const OPENSSL_RAW_DATA = UNKNOWN; define
|
H A D | openssl_arginfo.h | 648 REGISTER_LONG_CONSTANT("OPENSSL_RAW_DATA", OPENSSL_RAW_DATA, CONST_PERSISTENT); in register_openssl_symbols()
|
H A D | openssl.c | 7898 if (options & OPENSSL_RAW_DATA) { 8004 if (!(options & OPENSSL_RAW_DATA)) {
|
Completed in 43 milliseconds