diff options
author | Aris Adamantiadis <aris@0xbadc0de.be> | 2011-06-13 13:46:34 +0200 |
---|---|---|
committer | Aris Adamantiadis <aris@0xbadc0de.be> | 2011-06-13 13:46:34 +0200 |
commit | c5a998f47afc0c79c4badfa5f6554ae51ad92e82 (patch) | |
tree | 4a0b2d03049833ae85ea7f837b010403dd357a3a /include/libssh/ssh2.h | |
parent | 3b72bf08802a058cb663a40359ed0e006a1480ca (diff) | |
download | libssh-c5a998f47afc0c79c4badfa5f6554ae51ad92e82.tar.gz libssh-c5a998f47afc0c79c4badfa5f6554ae51ad92e82.tar.xz libssh-c5a998f47afc0c79c4badfa5f6554ae51ad92e82.zip |
[crypto] initial support for ecdh-sha2-nistp256
Works with openssl
Still requires work for libgcrypt and other modes
Diffstat (limited to 'include/libssh/ssh2.h')
-rw-r--r-- | include/libssh/ssh2.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/libssh/ssh2.h b/include/libssh/ssh2.h index bd89f4e..f66dd2a 100644 --- a/include/libssh/ssh2.h +++ b/include/libssh/ssh2.h @@ -13,6 +13,10 @@ #define SSH2_MSG_KEXDH_INIT 30 #define SSH2_MSG_KEXDH_REPLY 31 +#define SSH2_MSG_KEX_ECDH_INIT 30 +#define SSH2_MSG_KEX_ECDH_REPLY 31 +#define SSH2_MSG_ECMQV_INIT 30 +#define SSH2_MSG_ECMQV_REPLY 31 #define SSH2_MSG_KEX_DH_GEX_REQUEST_OLD 30 #define SSH2_MSG_KEX_DH_GEX_GROUP 31 |