Skip to content

Commit

Permalink
Fix Links
Browse files Browse the repository at this point in the history
  • Loading branch information
alexw91 committed Sep 17, 2024
1 parent b9e133d commit 890aca4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion ssl/ssl_key_share.cc
Original file line number Diff line number Diff line change
Expand Up @@ -728,7 +728,7 @@ CONSTEXPR_ARRAY HybridGroup kHybridGroups[] = {
SSL_GROUP_X25519_MLKEM768, // group_id
{
// Note: MLKEM768 is sent first due to FIPS requirements.
// For more details, see https://www.ietf.org/archive/id/draft-kwiatkowski-tls-ecdhe-mlkem.html#section-3
// For more details, see https://datatracker.ietf.org/doc/html/draft-kwiatkowski-tls-ecdhe-mlkem.html#section-3
SSL_GROUP_MLKEM768, // component_group_ids[0]
SSL_GROUP_X25519, // component_group_ids[1]
},
Expand Down
2 changes: 2 additions & 0 deletions ssl/ssl_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -750,11 +750,13 @@ static const HybridGroupTest kHybridGroupTests[] = {
X25519_SECRET_SIZE + MLKEM768_SHARED_SECRET_LEN,
{
// MLKEM768 is sent first for X25519MLKEM768 for FIPS compliance
// See: https://datatracker.ietf.org/doc/html/draft-kwiatkowski-tls-ecdhe-mlkem.html#section-3
MLKEM768_PUBLIC_KEY_BYTES, // offer_share_sizes[0]
X25519_KEYSHARE_SIZE, // offer_share_sizes[1]
},
{
// MLKEM768 is sent first for X25519MLKEM768 for FIPS compliance
// See: https://datatracker.ietf.org/doc/html/draft-kwiatkowski-tls-ecdhe-mlkem.html#section-3
MLKEM768_CIPHERTEXT_BYTES, // accept_share_sizes[0]
X25519_KEYSHARE_SIZE, // accept_share_sizes[1]
},
Expand Down

0 comments on commit 890aca4

Please sign in to comment.