mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 11:57:35 +00:00
LibTLS: Fix supported signature algorithms typo
The ED curve is INTRINSIC/ED25519, not INTRINSIC/ECDSA
This commit is contained in:
parent
fb7b4b9c59
commit
a559dca816
1 changed files with 1 additions and 1 deletions
|
@ -164,7 +164,7 @@ struct Options {
|
||||||
{ HashAlgorithm::SHA256, SignatureAlgorithm::RSA },
|
{ HashAlgorithm::SHA256, SignatureAlgorithm::RSA },
|
||||||
{ HashAlgorithm::SHA1, SignatureAlgorithm::RSA },
|
{ HashAlgorithm::SHA1, SignatureAlgorithm::RSA },
|
||||||
{ HashAlgorithm::SHA256, SignatureAlgorithm::ECDSA },
|
{ HashAlgorithm::SHA256, SignatureAlgorithm::ECDSA },
|
||||||
{ HashAlgorithm::INTRINSIC, SignatureAlgorithm::ECDSA });
|
{ HashAlgorithm::INTRINSIC, SignatureAlgorithm::ED25519 });
|
||||||
OPTION_WITH_DEFAULTS(Vector<SupportedGroup>, elliptic_curves,
|
OPTION_WITH_DEFAULTS(Vector<SupportedGroup>, elliptic_curves,
|
||||||
SupportedGroup::X25519,
|
SupportedGroup::X25519,
|
||||||
SupportedGroup::SECP256R1,
|
SupportedGroup::SECP256R1,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue