Skip to content

Commit

Permalink
sha3: add asm feature (#437)
Browse files Browse the repository at this point in the history
Transitively enables the `asm` feture in the `keccak` crate which was
added in RustCrypto/sponges#24.
  • Loading branch information
tarcieri committed Nov 15, 2022
1 parent 7556fe2 commit 8bf26e1
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion sha3/Cargo.toml
Expand Up @@ -13,7 +13,7 @@ categories = ["cryptography", "no-std"]

[dependencies]
digest = "0.10.4"
keccak = "0.1"
keccak = "0.1.3"

[dev-dependencies]
digest = { version = "0.10.4", features = ["dev"] }
Expand All @@ -22,5 +22,7 @@ hex-literal = "0.2.2"
[features]
default = ["std"]
std = ["digest/std"]

asm = ["keccak/asm"] # Enable ASM (currently ARMv8 only). WARNING: Bumps MSRV to 1.59
oid = ["digest/oid"] # Enable OID support. WARNING: Bumps MSRV to 1.57
reset = [] # Enable reset functionality

0 comments on commit 8bf26e1

Please sign in to comment.