diff options
author | lloyd <[email protected]> | 2012-01-24 17:26:16 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2012-01-24 17:26:16 +0000 |
commit | 0c0704eef5e4ab7e16c3f9c1576108c92a8aff87 (patch) | |
tree | 29b699b5eb178ab79acff99d5e044510b761e4d0 /src/tls/tls_magic.h | |
parent | da0713fe1ea6ff2c6aba611b4574696e3c957b22 (diff) |
Add support for the IDEA ciphersuite, though don't require it to be
compiled in for TLS as IIRC it's still patented in Europe for another
year or two.
Diffstat (limited to 'src/tls/tls_magic.h')
-rw-r--r-- | src/tls/tls_magic.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/tls/tls_magic.h b/src/tls/tls_magic.h index ff8906b86..05ad4ea9f 100644 --- a/src/tls/tls_magic.h +++ b/src/tls/tls_magic.h @@ -104,6 +104,7 @@ enum Ciphersuite_Code { TLS_RSA_WITH_AES_128_CBC_SHA256 = 0x003C, TLS_RSA_WITH_AES_256_CBC_SHA256 = 0x003D, TLS_RSA_WITH_SEED_CBC_SHA = 0x0096, + TLS_RSA_WITH_IDEA_CBC_SHA = 0x0007, TLS_DHE_DSS_WITH_3DES_EDE_CBC_SHA = 0x0013, TLS_DHE_DSS_WITH_AES_128_CBC_SHA = 0x0032, |