]> granicus.if.org Git - php/commitdiff
Rename private.key to private_rsa_1024.key in new openssl_seal test
authorJakub Zelenka <bukka@php.net>
Sun, 31 Jan 2016 18:13:37 +0000 (18:13 +0000)
committerJakub Zelenka <bukka@php.net>
Sun, 31 Jan 2016 18:13:37 +0000 (18:13 +0000)
ext/openssl/tests/bug70438.phpt

index de87a51a7a65918f82d413f33b45e4e715cb9bb3..937e9f3bd9a14a1bef44e6b92d3696590510f553 100644 (file)
@@ -14,7 +14,7 @@ if (!in_array('AES-128-CBC', openssl_get_cipher_methods(true))) {
 $data = "openssl_seal() test";
 $cipher = 'AES-128-CBC';
 $pub_key = "file://" . dirname(__FILE__) . "/public.key";
-$priv_key = "file://" . dirname(__FILE__) . "/private.key";
+$priv_key = "file://" . dirname(__FILE__) . "/private_rsa_1024.key";
 
 openssl_seal($data, $sealed, $ekeys, array($pub_key, $pub_key), $cipher);
 openssl_seal($data, $sealed, $ekeys, array($pub_key, $pub_key), 'sparkles', $iv);