Conversation
emil-wire
force-pushed
the
pq-mls-ciphersuites
branch
2 times, most recently
from
July 22, 2026 09:25
82c21de to
e2b60c6
Compare
emil-wire
force-pushed
the
pq-mls-ciphersuites
branch
from
September 4, 2026 08:22
e2b60c6 to
20ab753
Compare
emil-wire
force-pushed
the
pq-mls-ciphersuites
branch
from
September 4, 2026 08:47
20ab753 to
270fe36
Compare
emil-wire
marked this pull request as ready for review
September 4, 2026 13:22
This file contains hidden or 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
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.
Adds the eleven post-quantum cipher suites from draft-ietf-mls-pq-ciphersuites-06, numbered
0xF001to0xF00B.All eleven use HKDF-SHA256 or HKDF-SHA384, both for HPKE and for the MLS key schedule. SHA-3 is used only inside ML-KEM and the hybrid combiner, which live in the
hpkecrate.New key exchanges, all from
hpke0.14.1:New signature schemes from
ml-dsa0.1.1: ML-DSA-44, 65 and 87. These are plain FIPS-204 with an empty context. The private key is stored as its 32-byte seed.The numbers are placeholders. RFC 9420 keeps
0xF000to0xFFFFfor private use and IANA has assigned nothing yet, so these suites only work against another build of this branch.Tests:
openmls/tests/test_pq_lifecycle.rstakes all eleven suites through a whole group. Create it, add a member, commit, send a message, remove the member. Two of the suites also check that a message from the wrong epoch is rejected and that a removed member can no longer read. The tests inopenmls_rust_cryptoandopenmls_basic_credentialcover the provider and the ML-DSA key format.