diff options
author | Luca Casonato <hello@lcas.dev> | 2024-07-05 10:10:22 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-05 10:10:22 +0200 |
commit | 08e5606c3400d3a993c0ce6748901c56fc3db35b (patch) | |
tree | 032d3a09c6d22763ceb703e7908ca159d3d7a809 /ext/node/Cargo.toml | |
parent | b290fd01f3f5d32f9d010fc719ced0240759c049 (diff) |
fix(ext/node): rewrite digest handling (#24392)
Previously we had many different code paths all
handling digests in different places, all with
wildly different digest support. This commit
rewrites this to use a single digest handling
mechanism for all digest operations.
It adds various aliases for digest algorithms,
like node does. For example
`sha1WithRSAEncryption` is an alias for `sha1`.
It also adds support for `md5-sha1` digests in
various places.
Diffstat (limited to 'ext/node/Cargo.toml')
-rw-r--r-- | ext/node/Cargo.toml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/node/Cargo.toml b/ext/node/Cargo.toml index b1d40756b..b9228dfdd 100644 --- a/ext/node/Cargo.toml +++ b/ext/node/Cargo.toml @@ -49,7 +49,7 @@ k256 = "0.13.1" lazy-regex.workspace = true libc.workspace = true libz-sys.workspace = true -md-5 = "0.10.5" +md-5 = { version = "0.10.5", features = ["oid"] } md4 = "0.10.2" num-bigint.workspace = true num-bigint-dig = "0.8.2" @@ -66,14 +66,14 @@ rand.workspace = true regex.workspace = true reqwest.workspace = true ring.workspace = true -ripemd = "0.1.3" +ripemd = { version = "0.1.3", features = ["oid"] } rsa.workspace = true scrypt = "0.11.0" sec1 = "0.7" serde = "1.0.149" sha1.workspace = true sha2.workspace = true -sha3 = "0.10.8" +sha3 = { version = "0.10.8", features = ["oid"] } signature.workspace = true simd-json = "0.13.4" sm3 = "0.4.2" |