added ECDH with OpenSSL (see RFC 4753)

This commit is contained in:
Tobias Brunner
2008-05-22 11:39:17 +00:00
parent 31430acc1b
commit fc1a31d54b
7 changed files with 446 additions and 5 deletions
+6 -3
View File
@@ -24,11 +24,14 @@ ENUM_BEGIN(diffie_hellman_group_names, MODP_NONE, MODP_1024_BIT,
"MODP_1024_BIT");
ENUM_NEXT(diffie_hellman_group_names, MODP_1536_BIT, MODP_1536_BIT, MODP_1024_BIT,
"MODP_1536_BIT");
ENUM_NEXT(diffie_hellman_group_names, MODP_2048_BIT, MODP_8192_BIT, MODP_1536_BIT,
ENUM_NEXT(diffie_hellman_group_names, MODP_2048_BIT, ECP_521_BIT, MODP_1536_BIT,
"MODP_2048_BIT",
"MODP_3072_BIT",
"MODP_4096_BIT",
"MODP_6144_BIT",
"MODP_8192_BIT");
ENUM_END(diffie_hellman_group_names, MODP_8192_BIT);
"MODP_8192_BIT"
"ECP_256_BIT",
"ECP_384_BIT",
"ECP_521_BIT");
ENUM_END(diffie_hellman_group_names, ECP_521_BIT);