mirror of
https://github.com/nmap/nmap.git
synced 2026-05-13 08:46:45 +00:00
Fix EdDSA in default TLS 1.2 signature algorithms. Closes #2766
This commit is contained in:
parent
19fc89840f
commit
034ea73ce3
2 changed files with 4 additions and 4 deletions
|
|
@ -1,5 +1,7 @@
|
|||
#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
|
||||
sockets, leading to scans that never finish. [Daniel Miller]
|
||||
|
||||
|
|
|
|||
|
|
@ -1691,13 +1691,11 @@ do
|
|||
{"sha256","rsa"},
|
||||
{"sha256","dsa"},
|
||||
{"sha256","ecdsa"},
|
||||
{"sha256","ed25519"},
|
||||
{"sha256","ed448"},
|
||||
{"sha512","rsa"},
|
||||
{"sha512","dsa"},
|
||||
{"sha512","ecdsa"},
|
||||
{"sha512","ed25519"},
|
||||
{"sha512","ed448"},
|
||||
{"intrinsic","ed25519"},
|
||||
{"intrinsic","ed448"},
|
||||
}
|
||||
DEFAULT_SIGALGS = EXTENSION_HELPERS["signature_algorithms"](sigalgs)
|
||||
end
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue