test: add test for OAEP hash mismatch
PR-URL: https://github.com/nodejs/node/pull/28335 Fixes: https://github.com/nodejs/node/issues/25756 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Sam Roberts <vieuxtech@gmail.com>
This commit is contained in:
parent
0c9ad34427
commit
636dbfe787
@ -193,6 +193,11 @@ test_rsa('RSA_PKCS1_OAEP_PADDING', undefined, 'sha1');
|
||||
test_rsa('RSA_PKCS1_OAEP_PADDING', 'sha1', undefined);
|
||||
test_rsa('RSA_PKCS1_OAEP_PADDING', 'sha256', 'sha256');
|
||||
test_rsa('RSA_PKCS1_OAEP_PADDING', 'sha512', 'sha512');
|
||||
common.expectsError(() => {
|
||||
test_rsa('RSA_PKCS1_OAEP_PADDING', 'sha256', 'sha512');
|
||||
}, {
|
||||
code: 'ERR_OSSL_RSA_OAEP_DECODING_ERROR'
|
||||
});
|
||||
|
||||
// The following RSA-OAEP test cases were created using the WebCrypto API to
|
||||
// ensure compatibility when using non-SHA1 hash functions.
|
||||
|
Loading…
x
Reference in New Issue
Block a user