Skip to content

Commit

Permalink
feat: switch from SHA-256 to Areion-512-MMO
Browse files Browse the repository at this point in the history
Design details to follow.

BREAKING CHANGE: Completely changes everything.
  • Loading branch information
codahale committed Nov 3, 2023
1 parent be5ff0d commit 452c39c
Show file tree
Hide file tree
Showing 7 changed files with 308 additions and 88 deletions.
23 changes: 1 addition & 22 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 3 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@ include = ["src/**/*", "tests/**/*", "LICENSE", "README.md", "design.md", "perf.
[dependencies]
aes = { version = "0.8.3", features = ["hazmat"], optional = true }
cmov = "0.3.1"
digest = { version = "0.10.7", default-features = false, features = ["block-buffer", "core-api"] }
hex-literal = "0.4.1"
rand_core = { version = "0.6.4", default-features = false, optional = true }
sha2 = { version = "0.10.8", default-features = false }

[features]
asm = ["sha2/asm"]
default = ["asm", "hedge", "std"]
default = ["hedge", "std"]
docs = []
hedge = ["rand_core"]
portable = ["aes"]
Expand All @@ -33,7 +33,6 @@ members = ["benchmarks", "xtask"]
aegis = { version = "0.4.9", features = ["pure-rust"] }
expect-test = "1.4.1"
hex = "0.4.3"
hex-literal = "0.4.1"
proptest = "1.3.1"
rand = "0.8.5"

Expand Down
45 changes: 8 additions & 37 deletions fuzz/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 452c39c

Please sign in to comment.