Skip to content

Commit

Permalink
[wip] belt-dwp
Browse files Browse the repository at this point in the history
  • Loading branch information
makavity committed Feb 16, 2024
1 parent d1a2298 commit a4ed206
Show file tree
Hide file tree
Showing 5 changed files with 258 additions and 23 deletions.
118 changes: 95 additions & 23 deletions Cargo.lock

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

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ members = [
"aes-gcm-siv",
"aes-siv",
"ascon-aead",
"belt-dwp",
"ccm",
"chacha20poly1305",
"deoxys",
Expand Down
27 changes: 27 additions & 0 deletions belt-dwp/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
[package]
name = "belt-dwp"
version = "0.1.0"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
hex = "0.4.3"
belt-block = { version = "0.1.2" }
belt-ctr = "0.1.0"
aead = { version = "0.5.2", default-features = false }
hybrid-array = "0.2.0-rc.5"
hex-literal = "0.4.1"

polyval = { path = "../../universal-hashes/polyval" }
ghash = { path = "../../universal-hashes/ghash" }

[dev-dependencies]

[features]
default = ["aead/heapless"]
heapless = ["aead/heapless"]

[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
Loading

0 comments on commit a4ed206

Please sign in to comment.