Skip to content

feat: Implement BLAKE2X XOF (Blake2Xb and Blake2Xs) #704

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .typos.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
[files]
extend-exclude = [
".git/"
".git/",
"blake2/tests/data/*"
]

[default.extend-words]
Expand Down
114 changes: 114 additions & 0 deletions Cargo.lock

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

7 changes: 7 additions & 0 deletions blake2/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,20 @@ digest = { version = "0.11.0-rc.0", features = ["mac"] }
[dev-dependencies]
digest = { version = "0.11.0-rc.0", features = ["dev"] }
hex-literal = "1"
hex = "0.4"
base16ct = { version = "0.2", features = ["alloc"] }
b2rs = { git = "https://github.com/veorq/b2rs.git", branch = "master" }
rand = "0.8"
paste = "1.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"

[features]
default = ["alloc"]
alloc = ["digest/alloc"]
zeroize = ["digest/zeroize"]
reset = [] # Enable reset functionality
blake2x = [] # Enable Blake2X XOF functionality
#simd = []
#simd_opt = ["simd"]
#simd_asm = ["simd_opt"]
Expand Down
Loading
Loading