diff options
author | Kyle Willmon <kylewillmon@gmail.com> | 2023-01-18 09:18:41 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-18 15:18:41 +0000 |
commit | 84e9794970e998aaa510a526160258905a092d05 (patch) | |
tree | 81a94d9f49d233b506d3e57beb2631aad48b5a3f /ext/crypto/00_crypto.js | |
parent | f418be4f57594e88e5bcc6f384f1f6ad39f3918f (diff) |
chore(ext/crypto): Update rsa to 0.7.0 (#16327)
Bump the rsa crate to 0.7.0
The API for the `rsa` crate has changed significantly, but I have
verified that tests continue to pass throughout this update.
Diffstat (limited to 'ext/crypto/00_crypto.js')
-rw-r--r-- | ext/crypto/00_crypto.js | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/ext/crypto/00_crypto.js b/ext/crypto/00_crypto.js index 9487652f2..7d30dcccf 100644 --- a/ext/crypto/00_crypto.js +++ b/ext/crypto/00_crypto.js @@ -1307,12 +1307,10 @@ } const hashAlgorithm = key[_algorithm].hash.name; - const saltLength = normalizedAlgorithm.saltLength; return await core.opAsync("op_crypto_verify_key", { key: keyData, algorithm: "RSA-PSS", hash: hashAlgorithm, - saltLength, signature, }, data); } |