summaryrefslogtreecommitdiff
path: root/src/lib/libssl/ssl_locl.h
diff options
context:
space:
mode:
authormarkus <>2002-09-10 16:31:57 +0000
committermarkus <>2002-09-10 16:31:57 +0000
commit7d038e9d4d83e7c7120e78418e108df70b9025d6 (patch)
treebaf775b286ff801a89f746b1938a3c700bba6822 /src/lib/libssl/ssl_locl.h
parent3bd21dd4c3a3e3106321a5f6b3641ab9f18a6e3b (diff)
downloadopenbsd-7d038e9d4d83e7c7120e78418e108df70b9025d6.tar.gz
openbsd-7d038e9d4d83e7c7120e78418e108df70b9025d6.tar.bz2
openbsd-7d038e9d4d83e7c7120e78418e108df70b9025d6.zip
merge openssl-0.9.7-beta3, tested on vax by miod@
Diffstat (limited to 'src/lib/libssl/ssl_locl.h')
-rw-r--r--src/lib/libssl/ssl_locl.h15
1 files changed, 8 insertions, 7 deletions
diff --git a/src/lib/libssl/ssl_locl.h b/src/lib/libssl/ssl_locl.h
index 6afb0f4cdf..4c77e27acc 100644
--- a/src/lib/libssl/ssl_locl.h
+++ b/src/lib/libssl/ssl_locl.h
@@ -293,16 +293,17 @@
293#define SSL_NOT_EXP 0x00000001L 293#define SSL_NOT_EXP 0x00000001L
294#define SSL_EXPORT 0x00000002L 294#define SSL_EXPORT 0x00000002L
295 295
296#define SSL_STRONG_MASK 0x0000007cL 296#define SSL_STRONG_MASK 0x000000fcL
297#define SSL_EXP40 0x00000004L 297#define SSL_STRONG_NONE 0x00000004L
298#define SSL_EXP40 0x00000008L
298#define SSL_MICRO (SSL_EXP40) 299#define SSL_MICRO (SSL_EXP40)
299#define SSL_EXP56 0x00000008L 300#define SSL_EXP56 0x00000010L
300#define SSL_MINI (SSL_EXP56) 301#define SSL_MINI (SSL_EXP56)
301#define SSL_LOW 0x00000010L 302#define SSL_LOW 0x00000020L
302#define SSL_MEDIUM 0x00000020L 303#define SSL_MEDIUM 0x00000040L
303#define SSL_HIGH 0x00000040L 304#define SSL_HIGH 0x00000080L
304 305
305/* we have used 0000007f - 25 bits left to go */ 306/* we have used 000000ff - 24 bits left to go */
306 307
307/* 308/*
308 * Macros to check the export status and cipher strength for export ciphers. 309 * Macros to check the export status and cipher strength for export ciphers.