diff options
author | jsing <> | 2014-07-09 11:25:42 +0000 |
---|---|---|
committer | jsing <> | 2014-07-09 11:25:42 +0000 |
commit | c90a1a4bb021e5a2622323df8464bf574d0c4364 (patch) | |
tree | 604b9084e9f8d9e522922bc0cd6be5e22478e9ee /src/lib/libssl/ssl.h | |
parent | 4afcbff6153d561348af47fa000f298df3693a3c (diff) | |
download | openbsd-c90a1a4bb021e5a2622323df8464bf574d0c4364.tar.gz openbsd-c90a1a4bb021e5a2622323df8464bf574d0c4364.tar.bz2 openbsd-c90a1a4bb021e5a2622323df8464bf574d0c4364.zip |
tedu the SSL export cipher handling - since we do not have enabled export
ciphers we no longer need the flags or code to support it.
ok beck@ miod@
Diffstat (limited to 'src/lib/libssl/ssl.h')
-rw-r--r-- | src/lib/libssl/ssl.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/lib/libssl/ssl.h b/src/lib/libssl/ssl.h index 3e09bd3521..b1eeb85c64 100644 --- a/src/lib/libssl/ssl.h +++ b/src/lib/libssl/ssl.h | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: ssl.h,v 1.56 2014/06/13 13:28:53 jsing Exp $ */ | 1 | /* $OpenBSD: ssl.h,v 1.57 2014/07/09 11:25:42 jsing Exp $ */ |
2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | 2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) |
3 | * All rights reserved. | 3 | * All rights reserved. |
4 | * | 4 | * |
@@ -222,12 +222,9 @@ extern "C" { | |||
222 | 222 | ||
223 | /* These are used to specify which ciphers to use and not to use */ | 223 | /* These are used to specify which ciphers to use and not to use */ |
224 | 224 | ||
225 | #define SSL_TXT_EXP40 "EXPORT40" | ||
226 | #define SSL_TXT_EXP56 "EXPORT56" | ||
227 | #define SSL_TXT_LOW "LOW" | 225 | #define SSL_TXT_LOW "LOW" |
228 | #define SSL_TXT_MEDIUM "MEDIUM" | 226 | #define SSL_TXT_MEDIUM "MEDIUM" |
229 | #define SSL_TXT_HIGH "HIGH" | 227 | #define SSL_TXT_HIGH "HIGH" |
230 | #define SSL_TXT_FIPS "FIPS" | ||
231 | 228 | ||
232 | #define SSL_TXT_kFZA "kFZA" /* unused! */ | 229 | #define SSL_TXT_kFZA "kFZA" /* unused! */ |
233 | #define SSL_TXT_aFZA "aFZA" /* unused! */ | 230 | #define SSL_TXT_aFZA "aFZA" /* unused! */ |