Skip to content

Commit 503146a

Browse files
committed
Avoid RC4 use in another test
1 parent a80ae97 commit 503146a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ext/openssl/tests/openssl_open_basic.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ $data = "openssl_open() test";
88
$pub_key = "file://" . __DIR__ . "/public.key";
99
$priv_key = "file://" . __DIR__ . "/private_rsa_1024.key";
1010
$wrong = "wrong";
11-
$method = "RC4";
11+
$method = "AES-128-ECB";
1212

1313
openssl_seal($data, $sealed, $ekeys, array($pub_key, $pub_key, $pub_key), $method);
1414
openssl_open($sealed, $output, $ekeys[0], $priv_key, $method);

0 commit comments

Comments
 (0)