Skip to content

Commit

Permalink
Implemented bitsliced AES
Browse files Browse the repository at this point in the history
  • Loading branch information
sayantn committed Sep 2, 2024
1 parent 6f92046 commit fd578e4
Show file tree
Hide file tree
Showing 4 changed files with 457 additions and 4 deletions.
4 changes: 3 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,10 @@ keywords = ["crypto", "aes", "rijndael", "no_std"]
categories = ["cryptography", "no-std", "no-std::no-alloc"]

[features]
# Enable this option when using a nightly compiler to possibly boost performance. DO NOT use when not using a nightly compiler
# Enable this option when using a nightly compiler to possibly boost performance. DO NOT use when not using a nightly compiler. EXPERIMENTAL
nightly = []
# This option makes the software AES implementation constant-time, but very slow. Has no effect if another implementation is selected
constant-time = []

[dependencies]
cfg-if = "1.0.0"
Expand Down
Loading

0 comments on commit fd578e4

Please sign in to comment.