Skip to content

Commit

Permalink
update X25519-MLKEM768 code point
Browse files Browse the repository at this point in the history
Signed-off-by: Michael Baentsch <[email protected]>
  • Loading branch information
baentsch committed Sep 7, 2024
1 parent 2cdbc17 commit 53cf8a4
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion ALGORITHMS.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ As standardization for these algorithms within TLS is not done, all TLS code poi
| mlkem768 | 0x0248 | Yes | OQS_CODEPOINT_MLKEM768 |
| p384_mlkem768 | 0x2F48 | Yes | OQS_CODEPOINT_P384_MLKEM768 |
| x448_mlkem768 | 0x2FB3 | Yes | OQS_CODEPOINT_X448_MLKEM768 |
| x25519_mlkem768 | 0x2FB4 | Yes | OQS_CODEPOINT_X25519_MLKEM768 |
| x25519_mlkem768 | 4588 | Yes | OQS_CODEPOINT_X25519_MLKEM768 |
| p256_mlkem768 | 0x2FB5 | Yes | OQS_CODEPOINT_P256_MLKEM768 |
| mlkem1024 | 0x0249 | Yes | OQS_CODEPOINT_MLKEM1024 |
| p521_mlkem1024 | 0x2F49 | Yes | OQS_CODEPOINT_P521_MLKEM1024 |
Expand Down
2 changes: 1 addition & 1 deletion oqs-template/generate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ kems:
- hybrid_group: "x448"
nid: '0x2FB3'
- hybrid_group: "x25519"
nid: '0x2FB4'
nid: '4588'
- hybrid_group: "p256"
nid: '0x2FB5'
-
Expand Down
22 changes: 11 additions & 11 deletions oqs-template/oqs-kem-info.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,14 +85,14 @@
| HQC | 2023-04-30 | hqc192 | 4 | 3 | 0x2FB1 | x448 |
| HQC | 2023-04-30 | hqc256 | 4 | 5 | 0x0246 | |
| HQC | 2023-04-30 | hqc256 | 4 | 5 | 0x2F46 | secp521_r1 |
| ML-KEM | ML-KEM-ipd | mlkem1024 | ipd | 5 | 0x0249 | |
| ML-KEM | ML-KEM-ipd | mlkem1024 | ipd | 5 | 0x2F49 | secp521_r1 |
| ML-KEM | ML-KEM-ipd | mlkem1024 | ipd | 5 | 0x2F4A | p384 |
| ML-KEM | ML-KEM-ipd | mlkem512 | ipd | 1 | 0x0247 | |
| ML-KEM | ML-KEM-ipd | mlkem512 | ipd | 1 | 0x2F47 | secp256_r1 |
| ML-KEM | ML-KEM-ipd | mlkem512 | ipd | 1 | 0x2FB2 | x25519 |
| ML-KEM | ML-KEM-ipd | mlkem768 | ipd | 3 | 0x0248 | |
| ML-KEM | ML-KEM-ipd | mlkem768 | ipd | 3 | 0x2F48 | secp384_r1 |
| ML-KEM | ML-KEM-ipd | mlkem768 | ipd | 3 | 0x2FB3 | x448 |
| ML-KEM | ML-KEM-ipd | mlkem768 | ipd | 3 | 0x2FB4 | x25519 |
| ML-KEM | ML-KEM-ipd | mlkem768 | ipd | 3 | 0x2FB5 | p256 |
| ML-KEM | ML-KEM | mlkem1024 | FIPS203 | 5 | 0x0249 | |
| ML-KEM | ML-KEM | mlkem1024 | FIPS203 | 5 | 0x2F49 | secp521_r1 |
| ML-KEM | ML-KEM | mlkem1024 | FIPS203 | 5 | 0x2F4A | p384 |
| ML-KEM | ML-KEM | mlkem512 | FIPS203 | 1 | 0x0247 | |
| ML-KEM | ML-KEM | mlkem512 | FIPS203 | 1 | 0x2F47 | secp256_r1 |
| ML-KEM | ML-KEM | mlkem512 | FIPS203 | 1 | 0x2FB2 | x25519 |
| ML-KEM | ML-KEM | mlkem768 | FIPS203 | 3 | 0x0248 | |
| ML-KEM | ML-KEM | mlkem768 | FIPS203 | 3 | 0x2F48 | secp384_r1 |
| ML-KEM | ML-KEM | mlkem768 | FIPS203 | 3 | 0x2FB3 | x448 |
| ML-KEM | ML-KEM | mlkem768 | FIPS203 | 3 | 0x2FB5 | p256 |
| ML-KEM | ML-KEM | mlkem768 | FIPS203 | 3 | 4588 | x25519 |
2 changes: 1 addition & 1 deletion oqsprov/oqsprov_capabilities.c
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ static OQS_GROUP_CONSTANTS oqs_group_list[] = {

{0x2F48, 192, TLS1_3_VERSION, 0, -1, -1, 1},
{0x2FB3, 192, TLS1_3_VERSION, 0, -1, -1, 1},
{0x2FB4, 192, TLS1_3_VERSION, 0, -1, -1, 1},
{4588, 192, TLS1_3_VERSION, 0, -1, -1, 1},
{0x2FB5, 192, TLS1_3_VERSION, 0, -1, -1, 1},
{0x0249, 256, TLS1_3_VERSION, 0, -1, -1, 1},

Expand Down

0 comments on commit 53cf8a4

Please sign in to comment.