Home
last modified time | relevance | path

Searched refs:openssl_encrypt (Results 1 – 8 of 8) sorted by relevance

/PHP-5.5/ext/openssl/tests/
H A Dopenssl_encrypt_error.phpt2 openssl_encrypt() error tests
7 $data = "openssl_encrypt() tests";
14 var_dump(openssl_encrypt($data, $wrong, $password));
15 var_dump(openssl_encrypt($object, $method, $password));
16 var_dump(openssl_encrypt($data, $object, $password));
17 var_dump(openssl_encrypt($data, $method, $object));
18 var_dump(openssl_encrypt($arr, $method, $object));
19 var_dump(openssl_encrypt($data, $arr, $object));
20 var_dump(openssl_encrypt($data, $method, $arr));
23 Warning: openssl_encrypt(): Unknown cipher algorithm in %s on line %d
[all …]
H A D011.phpt2 openssl_encrypt() and openssl_decrypt() tests
7 $data = "openssl_encrypt() and openssl_decrypt() tests";
16 $encrypted = openssl_encrypt($data, $method, $password, 0, $iv);
19 $encrypted = openssl_encrypt($data, $method, $password, OPENSSL_RAW_DATA, $iv);
24 $encrypted = openssl_encrypt($padded_data, $method, $password, OPENSSL_RAW_DATA|OPENSSL_ZERO_PADDIN…
29 string(45) "openssl_encrypt() and openssl_decrypt() tests"
30 string(45) "openssl_encrypt() and openssl_decrypt() tests"
31 string(45) "openssl_encrypt() and openssl_decrypt() tests"
H A Dopenssl_encrypt_crash.phpt2 openssl_encrypt() crash with old OpenSSL
7 openssl_encrypt('', 'AES-128-CBC', 'foo');
12 Warning: openssl_encrypt(): Using an empty Initialization Vector (iv) is potentially insecure and n…
H A Dbug54060.phpt2 Bug #54060 (Memory leak in openssl_encrypt)
13 openssl_encrypt($data, 'des3', $pass, 0, '1qazxsw2');
H A Dopenssl_decrypt_error.phpt13 $encrypted = openssl_encrypt($data, $method, $password);
15 var_dump(openssl_encrypt($data, $method, $password, 0, $iv));
28 Warning: openssl_encrypt(): Using an empty Initialization Vector (iv) is potentially insecure and n…
H A Dbug54061.phpt12 $cr = openssl_encrypt($data, 'des3', $pass, 0, '1qazxsw2');
/PHP-5.5/ext/openssl/
H A Dopenssl.c116 PHP_FUNCTION(openssl_encrypt);
442 PHP_FE(openssl_encrypt, arginfo_openssl_encrypt)
4906 PHP_FUNCTION(openssl_encrypt) in PHP_FUNCTION() argument
/PHP-5.5/
H A DNEWS3439 . Added no padding option to openssl_encrypt()/openssl_decrypt(). (Scott)
4215 . openssl_encrypt()/openssl_decrypt() truncated keys of variable length
4434 . Fixed bug #54060 (Memory leaks when openssl_encrypt). (Pierre)
4918 - Added fifth parameter to openssl_encrypt()/openssl_decrypt()

Completed in 55 milliseconds