summaryrefslogtreecommitdiff
path: root/src/lib/libssl/crypto
diff options
context:
space:
mode:
authorsthen <>2012-07-11 11:02:48 +0000
committersthen <>2012-07-11 11:02:48 +0000
commitafb25265bd9be6cd38185c3953b58d628a497c6d (patch)
tree15197f3f4be11e6c7eeff91993c7c7b3dbad50cb /src/lib/libssl/crypto
parent6c48fe02c9be6a27407342904be1a8f1e7620d19 (diff)
downloadopenbsd-afb25265bd9be6cd38185c3953b58d628a497c6d.tar.gz
openbsd-afb25265bd9be6cd38185c3953b58d628a497c6d.tar.bz2
openbsd-afb25265bd9be6cd38185c3953b58d628a497c6d.zip
Disable SSLv2 in OpenSSL. No objections from djm.
Brad, jasper and naddy helped with test builds, fixing ports, etc.
Diffstat (limited to 'src/lib/libssl/crypto')
-rw-r--r--src/lib/libssl/crypto/arch/alpha/opensslconf.h6
-rw-r--r--src/lib/libssl/crypto/arch/amd64/opensslconf.h6
-rw-r--r--src/lib/libssl/crypto/arch/arm/opensslconf.h6
-rw-r--r--src/lib/libssl/crypto/arch/hppa/opensslconf.h6
-rw-r--r--src/lib/libssl/crypto/arch/hppa64/opensslconf.h6
-rw-r--r--src/lib/libssl/crypto/arch/i386/opensslconf.h6
-rw-r--r--src/lib/libssl/crypto/arch/m68k/opensslconf.h6
-rw-r--r--src/lib/libssl/crypto/arch/m88k/opensslconf.h6
-rw-r--r--src/lib/libssl/crypto/arch/mips64/opensslconf.h6
-rw-r--r--src/lib/libssl/crypto/arch/powerpc/opensslconf.h6
-rw-r--r--src/lib/libssl/crypto/arch/sh/opensslconf.h6
-rw-r--r--src/lib/libssl/crypto/arch/sparc/opensslconf.h6
-rw-r--r--src/lib/libssl/crypto/arch/sparc64/opensslconf.h6
-rw-r--r--src/lib/libssl/crypto/arch/vax/opensslconf.h6
14 files changed, 84 insertions, 0 deletions
diff --git a/src/lib/libssl/crypto/arch/alpha/opensslconf.h b/src/lib/libssl/crypto/arch/alpha/opensslconf.h
index a49bd23031..3dfec8c8b7 100644
--- a/src/lib/libssl/crypto/arch/alpha/opensslconf.h
+++ b/src/lib/libssl/crypto/arch/alpha/opensslconf.h
@@ -37,6 +37,9 @@
37#ifndef OPENSSL_NO_SEED 37#ifndef OPENSSL_NO_SEED
38# define OPENSSL_NO_SEED 38# define OPENSSL_NO_SEED
39#endif 39#endif
40#ifndef OPENSSL_NO_SSL2
41# define OPENSSL_NO_SSL2
42#endif
40#ifndef OPENSSL_NO_STORE 43#ifndef OPENSSL_NO_STORE
41# define OPENSSL_NO_STORE 44# define OPENSSL_NO_STORE
42#endif 45#endif
@@ -87,6 +90,9 @@
87# if defined(OPENSSL_NO_SEED) && !defined(NO_SEED) 90# if defined(OPENSSL_NO_SEED) && !defined(NO_SEED)
88# define NO_SEED 91# define NO_SEED
89# endif 92# endif
93# if defined(OPENSSL_NO_SSL2) && !defined(NO_SSL2)
94# define NO_SSL2
95# endif
90# if defined(OPENSSL_NO_STORE) && !defined(NO_STORE) 96# if defined(OPENSSL_NO_STORE) && !defined(NO_STORE)
91# define NO_STORE 97# define NO_STORE
92# endif 98# endif
diff --git a/src/lib/libssl/crypto/arch/amd64/opensslconf.h b/src/lib/libssl/crypto/arch/amd64/opensslconf.h
index 16314dbc1e..6a6029013f 100644
--- a/src/lib/libssl/crypto/arch/amd64/opensslconf.h
+++ b/src/lib/libssl/crypto/arch/amd64/opensslconf.h
@@ -37,6 +37,9 @@
37#ifndef OPENSSL_NO_SEED 37#ifndef OPENSSL_NO_SEED
38# define OPENSSL_NO_SEED 38# define OPENSSL_NO_SEED
39#endif 39#endif
40#ifndef OPENSSL_NO_SSL2
41# define OPENSSL_NO_SSL2
42#endif
40#ifndef OPENSSL_NO_STORE 43#ifndef OPENSSL_NO_STORE
41# define OPENSSL_NO_STORE 44# define OPENSSL_NO_STORE
42#endif 45#endif
@@ -87,6 +90,9 @@
87# if defined(OPENSSL_NO_SEED) && !defined(NO_SEED) 90# if defined(OPENSSL_NO_SEED) && !defined(NO_SEED)
88# define NO_SEED 91# define NO_SEED
89# endif 92# endif
93# if defined(OPENSSL_NO_SSL2) && !defined(NO_SSL2)
94# define NO_SSL2
95# endif
90# if defined(OPENSSL_NO_STORE) && !defined(NO_STORE) 96# if defined(OPENSSL_NO_STORE) && !defined(NO_STORE)
91# define NO_STORE 97# define NO_STORE
92# endif 98# endif
diff --git a/src/lib/libssl/crypto/arch/arm/opensslconf.h b/src/lib/libssl/crypto/arch/arm/opensslconf.h
index c1fc4e5d11..7c7015c9b7 100644
--- a/src/lib/libssl/crypto/arch/arm/opensslconf.h
+++ b/src/lib/libssl/crypto/arch/arm/opensslconf.h
@@ -37,6 +37,9 @@
37#ifndef OPENSSL_NO_SEED 37#ifndef OPENSSL_NO_SEED
38# define OPENSSL_NO_SEED 38# define OPENSSL_NO_SEED
39#endif 39#endif
40#ifndef OPENSSL_NO_SSL2
41# define OPENSSL_NO_SSL2
42#endif
40#ifndef OPENSSL_NO_STORE 43#ifndef OPENSSL_NO_STORE
41# define OPENSSL_NO_STORE 44# define OPENSSL_NO_STORE
42#endif 45#endif
@@ -87,6 +90,9 @@
87# if defined(OPENSSL_NO_SEED) && !defined(NO_SEED) 90# if defined(OPENSSL_NO_SEED) && !defined(NO_SEED)
88# define NO_SEED 91# define NO_SEED
89# endif 92# endif
93# if defined(OPENSSL_NO_SSL2) && !defined(NO_SSL2)
94# define NO_SSL2
95# endif
90# if defined(OPENSSL_NO_STORE) && !defined(NO_STORE) 96# if defined(OPENSSL_NO_STORE) && !defined(NO_STORE)
91# define NO_STORE 97# define NO_STORE
92# endif 98# endif
diff --git a/src/lib/libssl/crypto/arch/hppa/opensslconf.h b/src/lib/libssl/crypto/arch/hppa/opensslconf.h
index c1fc4e5d11..7c7015c9b7 100644
--- a/src/lib/libssl/crypto/arch/hppa/opensslconf.h
+++ b/src/lib/libssl/crypto/arch/hppa/opensslconf.h
@@ -37,6 +37,9 @@
37#ifndef OPENSSL_NO_SEED 37#ifndef OPENSSL_NO_SEED
38# define OPENSSL_NO_SEED 38# define OPENSSL_NO_SEED
39#endif 39#endif
40#ifndef OPENSSL_NO_SSL2
41# define OPENSSL_NO_SSL2
42#endif
40#ifndef OPENSSL_NO_STORE 43#ifndef OPENSSL_NO_STORE
41# define OPENSSL_NO_STORE 44# define OPENSSL_NO_STORE
42#endif 45#endif
@@ -87,6 +90,9 @@
87# if defined(OPENSSL_NO_SEED) && !defined(NO_SEED) 90# if defined(OPENSSL_NO_SEED) && !defined(NO_SEED)
88# define NO_SEED 91# define NO_SEED
89# endif 92# endif
93# if defined(OPENSSL_NO_SSL2) && !defined(NO_SSL2)
94# define NO_SSL2
95# endif
90# if defined(OPENSSL_NO_STORE) && !defined(NO_STORE) 96# if defined(OPENSSL_NO_STORE) && !defined(NO_STORE)
91# define NO_STORE 97# define NO_STORE
92# endif 98# endif
diff --git a/src/lib/libssl/crypto/arch/hppa64/opensslconf.h b/src/lib/libssl/crypto/arch/hppa64/opensslconf.h
index 38a4f1ca9f..7199268572 100644
--- a/src/lib/libssl/crypto/arch/hppa64/opensslconf.h
+++ b/src/lib/libssl/crypto/arch/hppa64/opensslconf.h
@@ -37,6 +37,9 @@
37#ifndef OPENSSL_NO_SEED 37#ifndef OPENSSL_NO_SEED
38# define OPENSSL_NO_SEED 38# define OPENSSL_NO_SEED
39#endif 39#endif
40#ifndef OPENSSL_NO_SSL2
41# define OPENSSL_NO_SSL2
42#endif
40#ifndef OPENSSL_NO_STORE 43#ifndef OPENSSL_NO_STORE
41# define OPENSSL_NO_STORE 44# define OPENSSL_NO_STORE
42#endif 45#endif
@@ -87,6 +90,9 @@
87# if defined(OPENSSL_NO_SEED) && !defined(NO_SEED) 90# if defined(OPENSSL_NO_SEED) && !defined(NO_SEED)
88# define NO_SEED 91# define NO_SEED
89# endif 92# endif
93# if defined(OPENSSL_NO_SSL2) && !defined(NO_SSL2)
94# define NO_SSL2
95# endif
90# if defined(OPENSSL_NO_STORE) && !defined(NO_STORE) 96# if defined(OPENSSL_NO_STORE) && !defined(NO_STORE)
91# define NO_STORE 97# define NO_STORE
92# endif 98# endif
diff --git a/src/lib/libssl/crypto/arch/i386/opensslconf.h b/src/lib/libssl/crypto/arch/i386/opensslconf.h
index 91993d7a3f..b9e4249fed 100644
--- a/src/lib/libssl/crypto/arch/i386/opensslconf.h
+++ b/src/lib/libssl/crypto/arch/i386/opensslconf.h
@@ -37,6 +37,9 @@
37#ifndef OPENSSL_NO_SEED 37#ifndef OPENSSL_NO_SEED
38# define OPENSSL_NO_SEED 38# define OPENSSL_NO_SEED
39#endif 39#endif
40#ifndef OPENSSL_NO_SSL2
41# define OPENSSL_NO_SSL2
42#endif
40#ifndef OPENSSL_NO_STORE 43#ifndef OPENSSL_NO_STORE
41# define OPENSSL_NO_STORE 44# define OPENSSL_NO_STORE
42#endif 45#endif
@@ -87,6 +90,9 @@
87# if defined(OPENSSL_NO_SEED) && !defined(NO_SEED) 90# if defined(OPENSSL_NO_SEED) && !defined(NO_SEED)
88# define NO_SEED 91# define NO_SEED
89# endif 92# endif
93# if defined(OPENSSL_NO_SSL2) && !defined(NO_SSL2)
94# define NO_SSL2
95# endif
90# if defined(OPENSSL_NO_STORE) && !defined(NO_STORE) 96# if defined(OPENSSL_NO_STORE) && !defined(NO_STORE)
91# define NO_STORE 97# define NO_STORE
92# endif 98# endif
diff --git a/src/lib/libssl/crypto/arch/m68k/opensslconf.h b/src/lib/libssl/crypto/arch/m68k/opensslconf.h
index c1fc4e5d11..7c7015c9b7 100644
--- a/src/lib/libssl/crypto/arch/m68k/opensslconf.h
+++ b/src/lib/libssl/crypto/arch/m68k/opensslconf.h
@@ -37,6 +37,9 @@
37#ifndef OPENSSL_NO_SEED 37#ifndef OPENSSL_NO_SEED
38# define OPENSSL_NO_SEED 38# define OPENSSL_NO_SEED
39#endif 39#endif
40#ifndef OPENSSL_NO_SSL2
41# define OPENSSL_NO_SSL2
42#endif
40#ifndef OPENSSL_NO_STORE 43#ifndef OPENSSL_NO_STORE
41# define OPENSSL_NO_STORE 44# define OPENSSL_NO_STORE
42#endif 45#endif
@@ -87,6 +90,9 @@
87# if defined(OPENSSL_NO_SEED) && !defined(NO_SEED) 90# if defined(OPENSSL_NO_SEED) && !defined(NO_SEED)
88# define NO_SEED 91# define NO_SEED
89# endif 92# endif
93# if defined(OPENSSL_NO_SSL2) && !defined(NO_SSL2)
94# define NO_SSL2
95# endif
90# if defined(OPENSSL_NO_STORE) && !defined(NO_STORE) 96# if defined(OPENSSL_NO_STORE) && !defined(NO_STORE)
91# define NO_STORE 97# define NO_STORE
92# endif 98# endif
diff --git a/src/lib/libssl/crypto/arch/m88k/opensslconf.h b/src/lib/libssl/crypto/arch/m88k/opensslconf.h
index c1fc4e5d11..7c7015c9b7 100644
--- a/src/lib/libssl/crypto/arch/m88k/opensslconf.h
+++ b/src/lib/libssl/crypto/arch/m88k/opensslconf.h
@@ -37,6 +37,9 @@
37#ifndef OPENSSL_NO_SEED 37#ifndef OPENSSL_NO_SEED
38# define OPENSSL_NO_SEED 38# define OPENSSL_NO_SEED
39#endif 39#endif
40#ifndef OPENSSL_NO_SSL2
41# define OPENSSL_NO_SSL2
42#endif
40#ifndef OPENSSL_NO_STORE 43#ifndef OPENSSL_NO_STORE
41# define OPENSSL_NO_STORE 44# define OPENSSL_NO_STORE
42#endif 45#endif
@@ -87,6 +90,9 @@
87# if defined(OPENSSL_NO_SEED) && !defined(NO_SEED) 90# if defined(OPENSSL_NO_SEED) && !defined(NO_SEED)
88# define NO_SEED 91# define NO_SEED
89# endif 92# endif
93# if defined(OPENSSL_NO_SSL2) && !defined(NO_SSL2)
94# define NO_SSL2
95# endif
90# if defined(OPENSSL_NO_STORE) && !defined(NO_STORE) 96# if defined(OPENSSL_NO_STORE) && !defined(NO_STORE)
91# define NO_STORE 97# define NO_STORE
92# endif 98# endif
diff --git a/src/lib/libssl/crypto/arch/mips64/opensslconf.h b/src/lib/libssl/crypto/arch/mips64/opensslconf.h
index 10cb4e721d..e481da68bf 100644
--- a/src/lib/libssl/crypto/arch/mips64/opensslconf.h
+++ b/src/lib/libssl/crypto/arch/mips64/opensslconf.h
@@ -37,6 +37,9 @@
37#ifndef OPENSSL_NO_SEED 37#ifndef OPENSSL_NO_SEED
38# define OPENSSL_NO_SEED 38# define OPENSSL_NO_SEED
39#endif 39#endif
40#ifndef OPENSSL_NO_SSL2
41# define OPENSSL_NO_SSL2
42#endif
40#ifndef OPENSSL_NO_STORE 43#ifndef OPENSSL_NO_STORE
41# define OPENSSL_NO_STORE 44# define OPENSSL_NO_STORE
42#endif 45#endif
@@ -87,6 +90,9 @@
87# if defined(OPENSSL_NO_SEED) && !defined(NO_SEED) 90# if defined(OPENSSL_NO_SEED) && !defined(NO_SEED)
88# define NO_SEED 91# define NO_SEED
89# endif 92# endif
93# if defined(OPENSSL_NO_SSL2) && !defined(NO_SSL2)
94# define NO_SSL2
95# endif
90# if defined(OPENSSL_NO_STORE) && !defined(NO_STORE) 96# if defined(OPENSSL_NO_STORE) && !defined(NO_STORE)
91# define NO_STORE 97# define NO_STORE
92# endif 98# endif
diff --git a/src/lib/libssl/crypto/arch/powerpc/opensslconf.h b/src/lib/libssl/crypto/arch/powerpc/opensslconf.h
index c1fc4e5d11..7c7015c9b7 100644
--- a/src/lib/libssl/crypto/arch/powerpc/opensslconf.h
+++ b/src/lib/libssl/crypto/arch/powerpc/opensslconf.h
@@ -37,6 +37,9 @@
37#ifndef OPENSSL_NO_SEED 37#ifndef OPENSSL_NO_SEED
38# define OPENSSL_NO_SEED 38# define OPENSSL_NO_SEED
39#endif 39#endif
40#ifndef OPENSSL_NO_SSL2
41# define OPENSSL_NO_SSL2
42#endif
40#ifndef OPENSSL_NO_STORE 43#ifndef OPENSSL_NO_STORE
41# define OPENSSL_NO_STORE 44# define OPENSSL_NO_STORE
42#endif 45#endif
@@ -87,6 +90,9 @@
87# if defined(OPENSSL_NO_SEED) && !defined(NO_SEED) 90# if defined(OPENSSL_NO_SEED) && !defined(NO_SEED)
88# define NO_SEED 91# define NO_SEED
89# endif 92# endif
93# if defined(OPENSSL_NO_SSL2) && !defined(NO_SSL2)
94# define NO_SSL2
95# endif
90# if defined(OPENSSL_NO_STORE) && !defined(NO_STORE) 96# if defined(OPENSSL_NO_STORE) && !defined(NO_STORE)
91# define NO_STORE 97# define NO_STORE
92# endif 98# endif
diff --git a/src/lib/libssl/crypto/arch/sh/opensslconf.h b/src/lib/libssl/crypto/arch/sh/opensslconf.h
index c1fc4e5d11..7c7015c9b7 100644
--- a/src/lib/libssl/crypto/arch/sh/opensslconf.h
+++ b/src/lib/libssl/crypto/arch/sh/opensslconf.h
@@ -37,6 +37,9 @@
37#ifndef OPENSSL_NO_SEED 37#ifndef OPENSSL_NO_SEED
38# define OPENSSL_NO_SEED 38# define OPENSSL_NO_SEED
39#endif 39#endif
40#ifndef OPENSSL_NO_SSL2
41# define OPENSSL_NO_SSL2
42#endif
40#ifndef OPENSSL_NO_STORE 43#ifndef OPENSSL_NO_STORE
41# define OPENSSL_NO_STORE 44# define OPENSSL_NO_STORE
42#endif 45#endif
@@ -87,6 +90,9 @@
87# if defined(OPENSSL_NO_SEED) && !defined(NO_SEED) 90# if defined(OPENSSL_NO_SEED) && !defined(NO_SEED)
88# define NO_SEED 91# define NO_SEED
89# endif 92# endif
93# if defined(OPENSSL_NO_SSL2) && !defined(NO_SSL2)
94# define NO_SSL2
95# endif
90# if defined(OPENSSL_NO_STORE) && !defined(NO_STORE) 96# if defined(OPENSSL_NO_STORE) && !defined(NO_STORE)
91# define NO_STORE 97# define NO_STORE
92# endif 98# endif
diff --git a/src/lib/libssl/crypto/arch/sparc/opensslconf.h b/src/lib/libssl/crypto/arch/sparc/opensslconf.h
index c1fc4e5d11..7c7015c9b7 100644
--- a/src/lib/libssl/crypto/arch/sparc/opensslconf.h
+++ b/src/lib/libssl/crypto/arch/sparc/opensslconf.h
@@ -37,6 +37,9 @@
37#ifndef OPENSSL_NO_SEED 37#ifndef OPENSSL_NO_SEED
38# define OPENSSL_NO_SEED 38# define OPENSSL_NO_SEED
39#endif 39#endif
40#ifndef OPENSSL_NO_SSL2
41# define OPENSSL_NO_SSL2
42#endif
40#ifndef OPENSSL_NO_STORE 43#ifndef OPENSSL_NO_STORE
41# define OPENSSL_NO_STORE 44# define OPENSSL_NO_STORE
42#endif 45#endif
@@ -87,6 +90,9 @@
87# if defined(OPENSSL_NO_SEED) && !defined(NO_SEED) 90# if defined(OPENSSL_NO_SEED) && !defined(NO_SEED)
88# define NO_SEED 91# define NO_SEED
89# endif 92# endif
93# if defined(OPENSSL_NO_SSL2) && !defined(NO_SSL2)
94# define NO_SSL2
95# endif
90# if defined(OPENSSL_NO_STORE) && !defined(NO_STORE) 96# if defined(OPENSSL_NO_STORE) && !defined(NO_STORE)
91# define NO_STORE 97# define NO_STORE
92# endif 98# endif
diff --git a/src/lib/libssl/crypto/arch/sparc64/opensslconf.h b/src/lib/libssl/crypto/arch/sparc64/opensslconf.h
index 10cb4e721d..e481da68bf 100644
--- a/src/lib/libssl/crypto/arch/sparc64/opensslconf.h
+++ b/src/lib/libssl/crypto/arch/sparc64/opensslconf.h
@@ -37,6 +37,9 @@
37#ifndef OPENSSL_NO_SEED 37#ifndef OPENSSL_NO_SEED
38# define OPENSSL_NO_SEED 38# define OPENSSL_NO_SEED
39#endif 39#endif
40#ifndef OPENSSL_NO_SSL2
41# define OPENSSL_NO_SSL2
42#endif
40#ifndef OPENSSL_NO_STORE 43#ifndef OPENSSL_NO_STORE
41# define OPENSSL_NO_STORE 44# define OPENSSL_NO_STORE
42#endif 45#endif
@@ -87,6 +90,9 @@
87# if defined(OPENSSL_NO_SEED) && !defined(NO_SEED) 90# if defined(OPENSSL_NO_SEED) && !defined(NO_SEED)
88# define NO_SEED 91# define NO_SEED
89# endif 92# endif
93# if defined(OPENSSL_NO_SSL2) && !defined(NO_SSL2)
94# define NO_SSL2
95# endif
90# if defined(OPENSSL_NO_STORE) && !defined(NO_STORE) 96# if defined(OPENSSL_NO_STORE) && !defined(NO_STORE)
91# define NO_STORE 97# define NO_STORE
92# endif 98# endif
diff --git a/src/lib/libssl/crypto/arch/vax/opensslconf.h b/src/lib/libssl/crypto/arch/vax/opensslconf.h
index c1fc4e5d11..7c7015c9b7 100644
--- a/src/lib/libssl/crypto/arch/vax/opensslconf.h
+++ b/src/lib/libssl/crypto/arch/vax/opensslconf.h
@@ -37,6 +37,9 @@
37#ifndef OPENSSL_NO_SEED 37#ifndef OPENSSL_NO_SEED
38# define OPENSSL_NO_SEED 38# define OPENSSL_NO_SEED
39#endif 39#endif
40#ifndef OPENSSL_NO_SSL2
41# define OPENSSL_NO_SSL2
42#endif
40#ifndef OPENSSL_NO_STORE 43#ifndef OPENSSL_NO_STORE
41# define OPENSSL_NO_STORE 44# define OPENSSL_NO_STORE
42#endif 45#endif
@@ -87,6 +90,9 @@
87# if defined(OPENSSL_NO_SEED) && !defined(NO_SEED) 90# if defined(OPENSSL_NO_SEED) && !defined(NO_SEED)
88# define NO_SEED 91# define NO_SEED
89# endif 92# endif
93# if defined(OPENSSL_NO_SSL2) && !defined(NO_SSL2)
94# define NO_SSL2
95# endif
90# if defined(OPENSSL_NO_STORE) && !defined(NO_STORE) 96# if defined(OPENSSL_NO_STORE) && !defined(NO_STORE)
91# define NO_STORE 97# define NO_STORE
92# endif 98# endif