Skip to content

Commit

Permalink
Merge pull request #401 from cryspen/jonas/modularize-psq
Browse files Browse the repository at this point in the history
Modularized PSQ
  • Loading branch information
jschneider-bensch authored Jul 22, 2024
2 parents b0a5da7 + b46e923 commit 2daee9c
Show file tree
Hide file tree
Showing 8 changed files with 673 additions and 369 deletions.
2 changes: 2 additions & 0 deletions Cargo.lock

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

9 changes: 5 additions & 4 deletions libcrux-psq/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,18 +10,19 @@ readme.workspace = true
description = "Libcrux Pre-Shared post-Quantum key establishement protocol"
publish = false

[lib]
path = "src/psq.rs"

[dependencies]
libcrux-kem = { version = "0.0.2-alpha.1", path = "../libcrux-kem", features = ["pre-verification"] }
libcrux-kem = { version = "0.0.2-alpha.1", path = "../libcrux-kem", features = [
"pre-verification",
] }
libcrux-hkdf = { version = "=0.0.2-alpha.1", path = "../libcrux-hkdf" }
libcrux-hmac = { version = "=0.0.2-alpha.1", path = "../libcrux-hmac" }
classic-mceliece-rust = { version = "2.0.0", features = [
"mceliece460896f",
"zeroize",
] }
rand = { version = "0.8" }
libcrux-ecdh = { version = "0.0.2-alpha.1", path = "../libcrux-ecdh" }
libcrux = { version = "0.0.2-alpha.1", path = ".." }

[dev-dependencies]
criterion = "0.5"
Expand Down
Loading

0 comments on commit 2daee9c

Please sign in to comment.