Skip to content

Commit

Permalink
Define x448 named group.
Browse files Browse the repository at this point in the history
Summary:
No immediate plans to implement this, adding it to improve logging
since a decent amount of client traffic advertises support for this.

Differential Revision: D68569061

fbshipit-source-id: 1cca457c2f889c767ed2364ee12f0e16158f60dc
  • Loading branch information
Kyle Nekritz authored and facebook-github-bot committed Jan 24, 2025
1 parent 8f9f554 commit f16ab71
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
2 changes: 2 additions & 0 deletions fizz/record/Types.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -269,6 +269,8 @@ std::string toString(NamedGroup group) {
return "secp521r1";
case NamedGroup::x25519:
return "x25519";
case NamedGroup::x448:
return "x448";
case NamedGroup::SecP256r1MLKEM768:
return "SecP256r1MLKEM768";
case fizz::NamedGroup::X25519MLKEM512_FB:
Expand Down
1 change: 1 addition & 0 deletions fizz/record/Types.h
Original file line number Diff line number Diff line change
Expand Up @@ -345,6 +345,7 @@ enum class NamedGroup : uint16_t {
secp384r1 = 24,
secp521r1 = 25,
x25519 = 29,
x448 = 30,
SecP256r1MLKEM768 = 4587,
X25519MLKEM512_FB = 65026,
X25519MLKEM768 = 4588,
Expand Down

0 comments on commit f16ab71

Please sign in to comment.