Skip to content

Commit 853ef3f

Browse files
jlherrenondrejmirtes
authored andcommitted
Fix openssl_seal()'s $iv parameter
The $iv parameter is an output-only parameter, the value passed in is not used.
1 parent 353367c commit 853ef3f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

resources/functionMap.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8116,7 +8116,7 @@
81168116
'openssl_public_decrypt' => ['bool', 'data'=>'string', '&w_decrypted'=>'string', 'key'=>'string|resource', 'padding='=>'int'],
81178117
'openssl_public_encrypt' => ['bool', 'data'=>'string', '&w_crypted'=>'string', 'key'=>'string|resource', 'padding='=>'int'],
81188118
'openssl_random_pseudo_bytes' => ['string|false', 'length'=>'int', '&w_crypto_strong='=>'bool'],
8119-
'openssl_seal' => ['int|false', 'data'=>'string', '&w_sealed_data'=>'string', '&w_env_keys'=>'array', 'pub_key_ids'=>'array', 'method='=>'string', '&rw_iv='=>'string'],
8119+
'openssl_seal' => ['int|false', 'data'=>'string', '&w_sealed_data'=>'string', '&w_env_keys'=>'array', 'pub_key_ids'=>'array', 'method='=>'string', '&w_iv='=>'string'],
81208120
'openssl_sign' => ['bool', 'data'=>'string', '&w_signature'=>'string', 'priv_key_id'=>'resource|string', 'signature_alg='=>'int|string'],
81218121
'openssl_spki_export' => ['string|null|false', 'spkac'=>'string'],
81228122
'openssl_spki_export_challenge' => ['string|null|false', 'spkac'=>'string'],

0 commit comments

Comments
 (0)