diff options
| author | Sean Michael Wykes <8363933+SeanWykes@users.noreply.github.com> | 2022-01-03 08:27:28 -0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-01-03 12:27:28 +0100 |
| commit | 9a42d65fc73cea9c8c523a2733d0b180bcdd78e7 (patch) | |
| tree | 3a2aceb308a5006138b5cb2daab27e8fa5699493 /Cargo.lock | |
| parent | a721c34c19a07ece6677f4efc8aa0db881b310f0 (diff) | |
feat(ext/crypto): support AES-CTR encrypt/decrypt (#13177)
Fixes #13201.
Diffstat (limited to 'Cargo.lock')
| -rw-r--r-- | Cargo.lock | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Cargo.lock b/Cargo.lock index 15b7509ec..96909a83e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -558,6 +558,15 @@ dependencies = [ ] [[package]] +name = "ctr" +version = "0.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "049bb91fb4aaf0e3c7efa6cd5ef877dbbbd15b39dad06d9948de4ec8a75761ea" +dependencies = [ + "cipher", +] + +[[package]] name = "cty" version = "0.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -775,6 +784,7 @@ dependencies = [ "aes", "base64 0.13.0", "block-modes", + "ctr", "deno_core", "deno_web", "elliptic-curve", |
