Home
last modified time | relevance | path

Searched refs:iv (Results 1 – 25 of 25) sorted by relevance

/php-src/ext/openssl/tests/
H A Dcipher_tests.inc6 'iv' => '1011121314151617',
14 'iv' => '101112131415161718191a1b',
28 'iv' => '5b8e40746f6b98e00f1d13ff41',
41 'iv' => '000000000000000000000000',
48 'iv' => '000000000000000000000000',
55 'iv' => 'cafebabefacedbaddecaf888',
68 'iv' => 'cafebabefacedbaddecaf888',
82 'iv' => 'cafebabefacedbad',
116 'iv' => 'BBAA99887766554433221100',
124 'iv' => 'BBAA99887766554433221101',
[all …]
H A Dopenssl_decrypt_basic.phpt12 $iv = '';
14 while(strlen($iv) < $ivlen) $iv .= chr(rand(0,255));
16 $encrypted = openssl_encrypt($data, $method, $password, 0, $iv);
17 $output = openssl_decrypt($encrypted, $method, $password, 0, $iv);
19 $encrypted = openssl_encrypt($data, $method, $password, OPENSSL_RAW_DATA, $iv);
20 $output = openssl_decrypt($encrypted, $method, $password, OPENSSL_RAW_DATA, $iv);
24 …ed = openssl_encrypt($padded_data, $method, $password, OPENSSL_RAW_DATA|OPENSSL_ZERO_PADDING, $iv);
25 …tput = openssl_decrypt($encrypted, $method, $password, OPENSSL_RAW_DATA|OPENSSL_ZERO_PADDING, $iv);
28 …enssl_decrypt($encrypted, $method, $password, OPENSSL_RAW_DATA|OPENSSL_ZERO_PADDING, $iv, tag: '');
30 …ssl_decrypt($encrypted, $method, $password, OPENSSL_RAW_DATA|OPENSSL_ZERO_PADDING, $iv, tag: null);
[all …]
H A Dopenssl_decrypt_error.phpt11 $iv = str_repeat("\0", openssl_cipher_iv_length($method));
14 var_dump($encrypted); /* Not passing $iv should be the same as all-NULL iv, but with a warning */
15 var_dump(openssl_encrypt($data, $method, $password, 0, $iv));
25 Warning: openssl_encrypt(): Using an empty Initialization Vector (iv) is potentially insecure and n…
H A Dbug70438.phpt24 openssl_seal($data, $sealed, $ekeys, array($pub_key, $pub_key), 'sparkles', $iv);
25 openssl_seal($data, $sealed, $ekeys, array($pub_key, $pub_key), $cipher, $iv);
26 openssl_open($sealed, $decrypted, $ekeys[0], $priv_key, $cipher, $iv);
30 openssl_seal(): Argument #6 ($iv) cannot be null for the chosen cipher algorithm
H A Dbug74099.phpt8 $iv = random_bytes(16);
14 $ciphertext = openssl_encrypt($plaintext, 'aes-256-gcm', $key, \OPENSSL_RAW_DATA, $iv, $tag, $aad);
H A Dbug74402.phpt21 $iv = '';
23 var_dump(openssl_seal($data, $sealed_data, $env_keys, $key, 'AES256', $iv));
H A Dopenssl_decrypt_gcm.phpt19 $test['iv'], $test['tag'], $test['aad']);
28 $test['iv'], $test['tag']));
31 $test['iv'], str_repeat('x', 16), $test['aad']));
H A Dopenssl_decrypt_ccm.phpt20 $test['iv'], $test['tag'], $test['aad']);
30 $test['iv'], $test['tag']));
33 $test['iv'], str_repeat('x', 10), $test['aad']));
H A Dopenssl_encrypt_error.phpt10 $iv = str_repeat("\0", openssl_cipher_iv_length($method));
19 var_dump(openssl_encrypt($data, $method, $password, OPENSSL_DONT_ZERO_PAD_KEY, $iv));
H A Dopenssl_decrypt_ocb.phpt19 $test['iv'], $test['tag'], $test['aad']);
33 $test['iv'], $test['tag']));
37 $test['iv'], str_repeat('x', 16), $test['aad']));
H A Dopenssl_encrypt_crash.phpt11 Warning: openssl_encrypt(): Using an empty Initialization Vector (iv) is potentially insecure and n…
H A Dbug60632.phpt28 openssl_seal(): Argument #6 ($iv) cannot be null for the chosen cipher algorithm
H A Dopenssl_encrypt_chacha20_poly1305.phpt19 $test['iv'], $tag, $test['aad'], strlen($test['tag']));
H A Dopenssl_encrypt_ccm.phpt20 $test['iv'], $tag, $test['aad'], strlen($test['tag']));
H A Dopenssl_encrypt_gcm.phpt19 $test['iv'], $tag, $test['aad'], strlen($test['tag']));
H A Dopenssl_encrypt_ocb.phpt19 $test['iv'], $tag, $test['aad'], strlen($test['tag']));
H A Dbug81713.phpt64 ["openssl_seal", "test", &$sealed, &$ekeys, [$priv_key_file_null], "AES-128-CBC", &$iv],
65 ["openssl_open", "test", &$open, "aaa", $priv_key_file_null, "AES-128-CBC", &$iv],
/php-src/ext/reflection/tests/
H A DReflectionProperty_isInitialized.phpt11 public ?int $iv = null;
27 var_dump((new ReflectionProperty($a, 'iv'))->isInitialized($a));
32 unset($a->iv);
36 var_dump((new ReflectionProperty($a, 'iv'))->isInitialized($a));
/php-src/ext/date/tests/
H A Dbug52808.phpt16 foreach($intervals as $iv) {
19 $di = new DateInterval($iv);
/php-src/ext/openssl/
H A Dphp_openssl.h132 const char *iv, size_t iv_len,
140 const char *iv, size_t iv_len,
H A Dopenssl_arginfo.h300 ZEND_ARG_INFO_WITH_DEFAULT_VALUE(1, iv, "null")
309 ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, iv, IS_STRING, 1, "null")
334 ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, iv, IS_STRING, 0, "\"\"")
345 ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, iv, IS_STRING, 0, "\"\"")
H A Dopenssl.c7061 zval *pubkeys, *pubkey, *sealdata, *ekeys, *iv = NULL; in PHP_FUNCTION() local
7094 if (!iv && iv_len > 0) { in PHP_FUNCTION()
7159 if (iv) { in PHP_FUNCTION()
7196 char *method, *iv = NULL; in PHP_FUNCTION() local
7224 if (!iv) { in PHP_FUNCTION()
7232 iv_buf = (unsigned char *)iv; in PHP_FUNCTION()
7656 const char *iv, size_t iv_len, in php_openssl_encrypt() argument
7735 efree((void *) iv); in php_openssl_encrypt()
7746 char *data, *method, *password, *iv = "", *aad = ""; in PHP_FUNCTION() local
7769 const char *iv, size_t iv_len, in php_openssl_decrypt() argument
[all …]
H A Dopenssl.stub.php594 * @param string $iv
/php-src/ext/standard/
H A Dvar_unserializer.re385 iv = [+-]? [0-9]+;
387 nvexp = (iv | nv) [eE] iv;
969 "i:" iv ";" {
1011 "d:" (iv | nv | nvexp) ";" {
1093 /* use iv() not uiv() in order to check data range */
/php-src/ext/date/lib/
H A Dparse_date.re282 { "iv", 0, 4 },

Completed in 45 milliseconds