summaryrefslogtreecommitdiff
path: root/Cargo.lock
diff options
context:
space:
mode:
authorYoshiya Hinosawa <stibium121@gmail.com>2023-03-25 15:42:07 +0900
committerGitHub <noreply@github.com>2023-03-25 15:42:07 +0900
commit70e2e8f2dd740fcbe4c09cfc59915320b7c22be3 (patch)
treef736c8fba79eb61e148209e55386b1dc9fc54c94 /Cargo.lock
parent255b06d7936aeeda51d4c91006f14b8383cb9f37 (diff)
fix(ext/node): add aes-128-ecb algorithm support (#18412)
Diffstat (limited to 'Cargo.lock')
-rw-r--r--Cargo.lock10
1 files changed, 10 insertions, 0 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 90ab50377..31874a748 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -1150,6 +1150,7 @@ dependencies = [
"cbc",
"deno_core",
"digest 0.10.6",
+ "ecb",
"hex",
"idna 0.3.0",
"indexmap",
@@ -1527,6 +1528,15 @@ dependencies = [
]
[[package]]
+name = "ecb"
+version = "0.1.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "17fd84ba81a904351ee27bbccb4aa2461e1cca04176a63ab4f8ca087757681a2"
+dependencies = [
+ "cipher",
+]
+
+[[package]]
name = "ecdsa"
version = "0.14.8"
source = "registry+https://github.com/rust-lang/crates.io-index"