update libcrux chachapoly to use libcrux-chacha20poly1305

This commit is contained in:
Jan Winkelmann (keks)
2025-02-27 16:56:05 +01:00
parent 01a1408044
commit 075d9ffff3
5 changed files with 303 additions and 104 deletions

View File

@@ -10,7 +10,10 @@ repository = "https://github.com/rosenpass/rosenpass"
readme = "readme.md"
[features]
experiment_libcrux = ["dep:libcrux"]
experiment_libcrux = [
"dep:libcrux",
"dep:libcrux-chacha20poly1305",
]
[dependencies]
anyhow = { workspace = true }
@@ -26,3 +29,6 @@ chacha20poly1305 = { workspace = true }
blake2 = { workspace = true }
libcrux = { workspace = true, optional = true }
sha3 = {workspace = true}
libcrux-chacha20poly1305 = { workspace = true, optional = true }
[dev-dependencies]
rand = { workspace = true }