mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-06-30 19:12:48 -05:00
Elliptic-curve cryptography support.
This provides support for ECDSA public keys, for both hosts and users, and also ECDH key exchange. Supported curves are currently just the three NIST curves required by RFC 5656.
This commit is contained in:

committed by
Simon Tatham

parent
7d1c30cd50
commit
2bf8688355
@ -115,6 +115,16 @@ my %packets = (
|
||||
my ($direction, $seq, $data) = @_;
|
||||
print "\n";
|
||||
},
|
||||
#define SSH2_MSG_KEX_ECDH_INIT 30 /* 0x1e */
|
||||
'SSH2_MSG_KEX_ECDH_INIT' => sub {
|
||||
my ($direction, $seq, $data) = @_;
|
||||
print "\n";
|
||||
},
|
||||
#define SSH2_MSG_KEX_ECDH_REPLY 31 /* 0x1f */
|
||||
'SSH2_MSG_KEX_ECDH_REPLY' => sub {
|
||||
my ($direction, $seq, $data) = @_;
|
||||
print "\n";
|
||||
},
|
||||
#define SSH2_MSG_USERAUTH_REQUEST 50 /* 0x32 */
|
||||
'SSH2_MSG_USERAUTH_REQUEST' => sub {
|
||||
my ($direction, $seq, $data) = @_;
|
||||
|
Reference in New Issue
Block a user