1
0
mirror of https://github.com/nmap/nmap.git synced 2025-12-06 12:41:29 +00:00

Fix EdDSA in default TLS 1.2 signature algorithms. Closes #2766

This commit is contained in:
dmiller
2024-01-29 18:31:36 +00:00
parent 19fc89840f
commit 034ea73ce3
2 changed files with 4 additions and 4 deletions

View File

@@ -1,5 +1,7 @@
#Nmap Changelog ($Id$); -*-text-*- #Nmap Changelog ($Id$); -*-text-*-
o [NSE][GH#2766] Fix TLS 1.2 signature algorithms for EdDSA. [Daniel Roethlisberger]
o [GH#2672] Fixed an issue where TCP Connect scan (-sT) on Windows would fail to open any o [GH#2672] Fixed an issue where TCP Connect scan (-sT) on Windows would fail to open any
sockets, leading to scans that never finish. [Daniel Miller] sockets, leading to scans that never finish. [Daniel Miller]

View File

@@ -1691,13 +1691,11 @@ do
{"sha256","rsa"}, {"sha256","rsa"},
{"sha256","dsa"}, {"sha256","dsa"},
{"sha256","ecdsa"}, {"sha256","ecdsa"},
{"sha256","ed25519"},
{"sha256","ed448"},
{"sha512","rsa"}, {"sha512","rsa"},
{"sha512","dsa"}, {"sha512","dsa"},
{"sha512","ecdsa"}, {"sha512","ecdsa"},
{"sha512","ed25519"}, {"intrinsic","ed25519"},
{"sha512","ed448"}, {"intrinsic","ed448"},
} }
DEFAULT_SIGALGS = EXTENSION_HELPERS["signature_algorithms"](sigalgs) DEFAULT_SIGALGS = EXTENSION_HELPERS["signature_algorithms"](sigalgs)
end end