You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
`EVP_PKEY_EC` only covers ANSI X9.62 curves not IETF ones(curve25519
and curve448). This fixes to add support of X25519 in
`tlsSocket.getEphemeralKeyInfo()`.
X448 should be added in the future upgrade to OpenSSL-1.1.1.
PR-URL: #20273Fixes: #20262
Reviewed-By: Daniel Bevenius <daniel.bevenius@gmail.com>
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Tobias Nießen <tniessen@tnie.de>
Version:
v10.0.0
Platform:
Windows 10 Education 1709 x64
Subsystem:
TLS
I wanted to see if node negotiates the new ciphers introduced with OpenSSL 1.1 with my server, already running OpenSSL 1.1
The seen Output then is:
Why is
tlsSocket.getEphemeralKeyInfo()
returning an empty object? It's clearly a PFS connection.It should return something like this:
{ type: 'ECDHE', name: 'X25519', size: 253}
The text was updated successfully, but these errors were encountered: