-
Notifications
You must be signed in to change notification settings - Fork 16
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
PQ-PSK prototype #310
Merged
Merged
PQ-PSK prototype #310
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
So they can be used by hybrid KEMs in the `libcrux-kem` crate.
So they can be used in the `libcrux-kem` crate
So they can be accessed in the `libcrux-kem` crate.
franziskuskiefer
added
the
waiting-on-author
Status: This is awaiting some action from the author.
label
Jun 24, 2024
jschneider-bensch
added
waiting-on-review
Status: Awaiting review from the assignee but also interested parties.
and removed
waiting-on-author
Status: This is awaiting some action from the author.
labels
Jun 26, 2024
karthikbhargavan
approved these changes
Jun 26, 2024
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Very nice work. We don't exactly know how this will be deployed in the context of other protocols it needs to compose with, but let's leave that larger API/composition discussion for a future PR.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This crate implements a protocol for agreeing on a pre-shared key such that the protocol messages are secure against harvest-now-decrypt-later (HNDL) passive quantum attackers.
The protocol between initator
A
and receiverB
roughly works as follows:Where
pk_B
is the receiver's KEM public key,sctx
is context information for the given session of the protocol,psk_ttl
specifies for how long the PSK should be considered valid, andK
is the final PSK that is derived from the decapsulated shared secret based on the internal KEM.The crate implements the protocol based on several different internal KEMs:
X25519
, an elliptic-curve Diffie-Hellman KEM (not post-quantum secure; for performance comparison)ML-KEM 768
, a lattice-based post-quantum KEM, in the process of being standardized by NISTClassic McEliece
, a code-based post-quantum KEM & Round 4 candidate in the NIST PQ competition,XWingKemDraft02
, a hybrid post-quantum KEM, combiningX25519
andML-KEM 768
based KEMs