Adds AES256 to the Crypto trait (#611)

This commit is contained in:
kaczmarczyck
2023-04-06 10:27:33 +02:00
committed by GitHub
parent d0cdbec5ce
commit 4cc1b4fddf
9 changed files with 294 additions and 228 deletions

View File

@@ -27,6 +27,8 @@ rand_core = { version = "0.6.4", optional = true }
sha2 = { version = "0.10.6", optional = true }
hmac = { version = "0.12.1", optional = true }
hkdf = { version = "0.12.3", optional = true }
aes = { version = "0.8.2", optional = true }
cbc = { version = "0.1.2", optional = true }
[features]
debug_ctap = []
@@ -35,7 +37,7 @@ with_ctap1 = ["crypto/with_ctap1"]
vendor_hid = []
fuzz = ["arbitrary", "std"]
ed25519 = ["ed25519-compact"]
rust_crypto = ["p256", "rand_core", "sha2", "hmac", "hkdf"]
rust_crypto = ["p256", "rand_core", "sha2", "hmac", "hkdf", "aes", "cbc"]
[dev-dependencies]
enum-iterator = "0.6.0"