summaryrefslogtreecommitdiffstats
path: root/lib/libssl/src/ssl/ssl_locl.h
diff options
context:
space:
mode:
authorjsing <jsing@openbsd.org>2014-11-02 10:42:38 +0000
committerjsing <jsing@openbsd.org>2014-11-02 10:42:38 +0000
commitf4d0b694526fe3d13caeec170e24634e4e084b7e (patch)
tree42b2d9129d9e63e9384517a211f21c75f4763eea /lib/libssl/src/ssl/ssl_locl.h
parentTests for constructs such as 'foo >= a.version foo != another.version'. (diff)
downloadwireguard-openbsd-f4d0b694526fe3d13caeec170e24634e4e084b7e.tar.xz
wireguard-openbsd-f4d0b694526fe3d13caeec170e24634e4e084b7e.zip
Remove remnants from RC2 and SEED - there are no longer any cipher suites
that use these algorithms (and SEED was removed from libcrypto some time ago). ok doug@
Diffstat (limited to 'lib/libssl/src/ssl/ssl_locl.h')
-rw-r--r--lib/libssl/src/ssl/ssl_locl.h24
1 files changed, 11 insertions, 13 deletions
diff --git a/lib/libssl/src/ssl/ssl_locl.h b/lib/libssl/src/ssl/ssl_locl.h
index e7bcb890e4e..9aa9bc60ffe 100644
--- a/lib/libssl/src/ssl/ssl_locl.h
+++ b/lib/libssl/src/ssl/ssl_locl.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: ssl_locl.h,v 1.73 2014/10/31 15:25:55 jsing Exp $ */
+/* $OpenBSD: ssl_locl.h,v 1.74 2014/11/02 10:42:38 jsing Exp $ */
/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
* All rights reserved.
*
@@ -274,18 +274,16 @@
#define SSL_DES 0x00000001L
#define SSL_3DES 0x00000002L
#define SSL_RC4 0x00000004L
-#define SSL_RC2 0x00000008L
-#define SSL_IDEA 0x00000010L
-#define SSL_eNULL 0x00000020L
-#define SSL_AES128 0x00000040L
-#define SSL_AES256 0x00000080L
-#define SSL_CAMELLIA128 0x00000100L
-#define SSL_CAMELLIA256 0x00000200L
-#define SSL_eGOST2814789CNT 0x00000400L
-#define SSL_SEED 0x00000800L
-#define SSL_AES128GCM 0x00001000L
-#define SSL_AES256GCM 0x00002000L
-#define SSL_CHACHA20POLY1305 0x00004000L
+#define SSL_IDEA 0x00000008L
+#define SSL_eNULL 0x00000010L
+#define SSL_AES128 0x00000020L
+#define SSL_AES256 0x00000040L
+#define SSL_CAMELLIA128 0x00000080L
+#define SSL_CAMELLIA256 0x00000100L
+#define SSL_eGOST2814789CNT 0x00000200L
+#define SSL_AES128GCM 0x00000400L
+#define SSL_AES256GCM 0x00000800L
+#define SSL_CHACHA20POLY1305 0x00001000L
#define SSL_AES (SSL_AES128|SSL_AES256|SSL_AES128GCM|SSL_AES256GCM)
#define SSL_CAMELLIA (SSL_CAMELLIA128|SSL_CAMELLIA256)