Skip to content

Commit bd3b684

Browse files
committed
Merge branch 'PHP-8.3'
2 parents 0c3b389 + b7992d4 commit bd3b684

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

ext/openssl/tests/openssl_error_string_basic.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ expect_openssl_errors('openssl_private_decrypt', ['04099079']);
122122
// public encrypt and decrypt with failed padding check and padding
123123
@openssl_public_encrypt("data", $crypted, $public_key_file, 1000);
124124
@openssl_public_decrypt("data", $crypted, $public_key_file, OPENSSL_PKCS1_OAEP_PADDING);
125-
expect_openssl_errors('openssl_private_(en|de)crypt padding', [$err_pem_no_start_line, '0408F090', '06089093']);
125+
expect_openssl_errors('openssl_private_(en|de)crypt padding', ['0408F090', '06089093']);
126126

127127
// X509
128128
echo "X509 errors\n";

ext/openssl/tests/openssl_error_string_basic_openssl3.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ expect_openssl_errors('openssl_private_decrypt', ['02000079']);
123123
// public encrypt and decrypt with failed padding check and padding
124124
@openssl_public_encrypt("data", $crypted, $public_key_file, 1000);
125125
@openssl_public_decrypt("data", $crypted, $public_key_file, OPENSSL_PKCS1_OAEP_PADDING);
126-
expect_openssl_errors('openssl_private_(en|de)crypt padding', [$err_pem_no_start_line, '1C8000A5']);
126+
expect_openssl_errors('openssl_private_(en|de)crypt padding', ['1C8000A5']);
127127

128128
// X509
129129
echo "X509 errors\n";

0 commit comments

Comments
 (0)