Skip to content
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

Modularized PSQ #401

Merged
merged 21 commits into from
Jul 22, 2024
Merged
Show file tree
Hide file tree
Changes from 9 commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
1fca7d0
WIP modularized PSQ
jschneider-bensch Jul 15, 2024
ce820a7
Reduce scope of PSQ component, TTL to binder etc
jschneider-bensch Jul 16, 2024
fe43ce8
Fix encaps example
jschneider-bensch Jul 16, 2024
31b3756
Fix AEAD key derivation
jschneider-bensch Jul 16, 2024
92f62ab
Remove obsolete `sizes` example
jschneider-bensch Jul 16, 2024
4a93b3c
Naming, some documentation
jschneider-bensch Jul 16, 2024
ace19bf
Clean up
jschneider-bensch Jul 16, 2024
62d1b3d
Update benchmarks to ECDH binder
jschneider-bensch Jul 16, 2024
a1207ba
Merge branch 'main' into jonas/modularize-psq
jschneider-bensch Jul 16, 2024
2409c5b
Avoid panic on system time error
jschneider-bensch Jul 18, 2024
90158df
Avoid allocating for known length array
jschneider-bensch Jul 18, 2024
84205e2
Remove warnings about unused variables
jschneider-bensch Jul 18, 2024
e07c750
Avoid further panics and error instead
jschneider-bensch Jul 18, 2024
f98caec
Avoid underflow panic
jschneider-bensch Jul 18, 2024
2877d7b
Use known size array for initiator pk
jschneider-bensch Jul 18, 2024
e78b992
Clarify documentation re. supported ECDH key types
jschneider-bensch Jul 18, 2024
a980ba4
Use struct for AEAD MAC
jschneider-bensch Jul 18, 2024
e4dedd6
Use external-memory en/decryption API for AEAD
jschneider-bensch Jul 18, 2024
3e7f413
Merge branch 'main' into jonas/modularize-psq
jschneider-bensch Jul 18, 2024
41e7bda
Usage example for PSQ
jschneider-bensch Jul 22, 2024
b46e923
Merge branch 'main' into jonas/modularize-psq
jschneider-bensch Jul 22, 2024
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
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 = ".." }
jschneider-bensch marked this conversation as resolved.
Show resolved Hide resolved

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