From 3b2cb8e7113b19344209eddc8bc1bd447fcec4ea Mon Sep 17 00:00:00 2001 From: Divy Srivastava Date: Mon, 11 Oct 2021 20:07:51 +0530 Subject: feat(ext/crypto): implement AES-CBC encryption & decryption (#12123) * initial stuff * stuff * merge stuff * cleanup * fmt * length * update lockfile * decrypt * fixy * clippy hello? * hmm * fixs * fix lint * add AesCbcParams * fixes * fixy * lockfile fixy * fix dumb assertions * re run CI * rerun CI * rerun CI --- ext/crypto/Cargo.toml | 2 ++ 1 file changed, 2 insertions(+) (limited to 'ext/crypto/Cargo.toml') diff --git a/ext/crypto/Cargo.toml b/ext/crypto/Cargo.toml index 060845b70..16839d8d1 100644 --- a/ext/crypto/Cargo.toml +++ b/ext/crypto/Cargo.toml @@ -14,6 +14,8 @@ description = "Web Cryptography API implementation for Deno" path = "lib.rs" [dependencies] +aes = "0.7.5" +block-modes = "0.8.1" deno_core = { version = "0.102.0", path = "../../core" } deno_web = { version = "0.51.0", path = "../web" } lazy_static = "1.4.0" -- cgit v1.2.3