From 08e5606c3400d3a993c0ce6748901c56fc3db35b Mon Sep 17 00:00:00 2001 From: Luca Casonato Date: Fri, 5 Jul 2024 10:10:22 +0200 Subject: 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. --- ext/crypto/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ext/crypto') diff --git a/ext/crypto/Cargo.toml b/ext/crypto/Cargo.toml index e1fc16275..418394584 100644 --- a/ext/crypto/Cargo.toml +++ b/ext/crypto/Cargo.toml @@ -35,7 +35,7 @@ ring = { workspace = true, features = ["std"] } rsa.workspace = true serde.workspace = true serde_bytes.workspace = true -sha1 = { version = "0.10.6", features = ["oid"] } +sha1.workspace = true sha2.workspace = true signature.workspace = true spki.workspace = true -- cgit v1.2.3