diff options
author | bcook <> | 2014-07-09 11:10:51 +0000 |
---|---|---|
committer | bcook <> | 2014-07-09 11:10:51 +0000 |
commit | b6e6d79c7b0d0ed1c3a8660e0fd93dad90d55b71 (patch) | |
tree | d5dcd125a1cd3379f5a9e75a01457548117ec1a6 /src | |
parent | 1376f74654846fcb2d768de3e82a71db99af6c5d (diff) | |
download | openbsd-b6e6d79c7b0d0ed1c3a8660e0fd93dad90d55b71.tar.gz openbsd-b6e6d79c7b0d0ed1c3a8660e0fd93dad90d55b71.tar.bz2 openbsd-b6e6d79c7b0d0ed1c3a8660e0fd93dad90d55b71.zip |
remove unused, private version strings except SSL_version_str
Also remove unused des_ver.h, which exports some of these strings, but is not installed.
ok miod@ tedu@
Diffstat (limited to 'src')
72 files changed, 70 insertions, 340 deletions
diff --git a/src/lib/libcrypto/aes/aes_misc.c b/src/lib/libcrypto/aes/aes_misc.c index 343fc33c70..6c1506dd79 100644 --- a/src/lib/libcrypto/aes/aes_misc.c +++ b/src/lib/libcrypto/aes/aes_misc.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: aes_misc.c,v 1.9 2014/07/09 09:10:07 miod Exp $ */ | 1 | /* $OpenBSD: aes_misc.c,v 1.10 2014/07/09 11:10:50 bcook Exp $ */ |
2 | /* ==================================================================== | 2 | /* ==================================================================== |
3 | * Copyright (c) 1998-2002 The OpenSSL Project. All rights reserved. | 3 | * Copyright (c) 1998-2002 The OpenSSL Project. All rights reserved. |
4 | * | 4 | * |
@@ -54,8 +54,6 @@ | |||
54 | #include <openssl/aes.h> | 54 | #include <openssl/aes.h> |
55 | #include "aes_locl.h" | 55 | #include "aes_locl.h" |
56 | 56 | ||
57 | const char AES_version[]="AES" OPENSSL_VERSION_PTEXT; | ||
58 | |||
59 | const char * | 57 | const char * |
60 | AES_options(void) | 58 | AES_options(void) |
61 | { | 59 | { |
diff --git a/src/lib/libcrypto/asn1/asn1_lib.c b/src/lib/libcrypto/asn1/asn1_lib.c index 81ef12b6e7..31e523fc75 100644 --- a/src/lib/libcrypto/asn1/asn1_lib.c +++ b/src/lib/libcrypto/asn1/asn1_lib.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: asn1_lib.c,v 1.27 2014/06/12 15:49:27 deraadt Exp $ */ | 1 | /* $OpenBSD: asn1_lib.c,v 1.28 2014/07/09 11:10:50 bcook 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 | * |
@@ -64,7 +64,6 @@ | |||
64 | 64 | ||
65 | static int asn1_get_length(const unsigned char **pp, int *inf, long *rl, int max); | 65 | static int asn1_get_length(const unsigned char **pp, int *inf, long *rl, int max); |
66 | static void asn1_put_length(unsigned char **pp, int length); | 66 | static void asn1_put_length(unsigned char **pp, int length); |
67 | const char ASN1_version[]="ASN.1" OPENSSL_VERSION_PTEXT; | ||
68 | 67 | ||
69 | static int | 68 | static int |
70 | _asn1_check_infinite_end(const unsigned char **p, long len) | 69 | _asn1_check_infinite_end(const unsigned char **p, long len) |
diff --git a/src/lib/libcrypto/bf/bf_ecb.c b/src/lib/libcrypto/bf/bf_ecb.c index 6d65b16a6a..305bd78260 100644 --- a/src/lib/libcrypto/bf/bf_ecb.c +++ b/src/lib/libcrypto/bf/bf_ecb.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: bf_ecb.c,v 1.5 2014/06/12 15:49:28 deraadt Exp $ */ | 1 | /* $OpenBSD: bf_ecb.c,v 1.6 2014/07/09 11:10:50 bcook 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 | * |
@@ -65,8 +65,6 @@ | |||
65 | * CAMBRIDGE SECURITY WORKSHOP, CAMBRIDGE, U.K., DECEMBER 9-11, 1993) | 65 | * CAMBRIDGE SECURITY WORKSHOP, CAMBRIDGE, U.K., DECEMBER 9-11, 1993) |
66 | */ | 66 | */ |
67 | 67 | ||
68 | const char BF_version[]="Blowfish" OPENSSL_VERSION_PTEXT; | ||
69 | |||
70 | const char *BF_options(void) | 68 | const char *BF_options(void) |
71 | { | 69 | { |
72 | #ifdef BF_PTR | 70 | #ifdef BF_PTR |
diff --git a/src/lib/libcrypto/bn/bn_lib.c b/src/lib/libcrypto/bn/bn_lib.c index 0de48a4588..49a967e9e0 100644 --- a/src/lib/libcrypto/bn/bn_lib.c +++ b/src/lib/libcrypto/bn/bn_lib.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: bn_lib.c,v 1.28 2014/06/12 15:49:28 deraadt Exp $ */ | 1 | /* $OpenBSD: bn_lib.c,v 1.29 2014/07/09 11:10:50 bcook 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 | * |
@@ -67,8 +67,6 @@ | |||
67 | #include "cryptlib.h" | 67 | #include "cryptlib.h" |
68 | #include "bn_lcl.h" | 68 | #include "bn_lcl.h" |
69 | 69 | ||
70 | const char BN_version[] = "Big Number" OPENSSL_VERSION_PTEXT; | ||
71 | |||
72 | /* This stuff appears to be completely unused, so is deprecated */ | 70 | /* This stuff appears to be completely unused, so is deprecated */ |
73 | #ifndef OPENSSL_NO_DEPRECATED | 71 | #ifndef OPENSSL_NO_DEPRECATED |
74 | /* For a 32 bit machine | 72 | /* For a 32 bit machine |
diff --git a/src/lib/libcrypto/camellia/cmll_misc.c b/src/lib/libcrypto/camellia/cmll_misc.c index 16304bab5c..5caa7a9874 100644 --- a/src/lib/libcrypto/camellia/cmll_misc.c +++ b/src/lib/libcrypto/camellia/cmll_misc.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: cmll_misc.c,v 1.3 2014/06/12 15:49:28 deraadt Exp $ */ | 1 | /* $OpenBSD: cmll_misc.c,v 1.4 2014/07/09 11:10:50 bcook Exp $ */ |
2 | /* ==================================================================== | 2 | /* ==================================================================== |
3 | * Copyright (c) 2006 The OpenSSL Project. All rights reserved. | 3 | * Copyright (c) 2006 The OpenSSL Project. All rights reserved. |
4 | * | 4 | * |
@@ -54,8 +54,6 @@ | |||
54 | #include <openssl/camellia.h> | 54 | #include <openssl/camellia.h> |
55 | #include "cmll_locl.h" | 55 | #include "cmll_locl.h" |
56 | 56 | ||
57 | const char CAMELLIA_version[]="CAMELLIA" OPENSSL_VERSION_PTEXT; | ||
58 | |||
59 | int private_Camellia_set_key(const unsigned char *userKey, const int bits, | 57 | int private_Camellia_set_key(const unsigned char *userKey, const int bits, |
60 | CAMELLIA_KEY *key) | 58 | CAMELLIA_KEY *key) |
61 | { | 59 | { |
diff --git a/src/lib/libcrypto/cast/c_ecb.c b/src/lib/libcrypto/cast/c_ecb.c index c94c50bd4f..c3a01b71ae 100644 --- a/src/lib/libcrypto/cast/c_ecb.c +++ b/src/lib/libcrypto/cast/c_ecb.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: c_ecb.c,v 1.6 2014/06/12 15:49:28 deraadt Exp $ */ | 1 | /* $OpenBSD: c_ecb.c,v 1.7 2014/07/09 11:10:50 bcook 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 | * |
@@ -60,8 +60,6 @@ | |||
60 | #include "cast_lcl.h" | 60 | #include "cast_lcl.h" |
61 | #include <openssl/opensslv.h> | 61 | #include <openssl/opensslv.h> |
62 | 62 | ||
63 | const char CAST_version[]="CAST" OPENSSL_VERSION_PTEXT; | ||
64 | |||
65 | void CAST_ecb_encrypt(const unsigned char *in, unsigned char *out, | 63 | void CAST_ecb_encrypt(const unsigned char *in, unsigned char *out, |
66 | const CAST_KEY *ks, int enc) | 64 | const CAST_KEY *ks, int enc) |
67 | { | 65 | { |
diff --git a/src/lib/libcrypto/conf/conf_def.c b/src/lib/libcrypto/conf/conf_def.c index a5cfd86ae2..f9b4a5b148 100644 --- a/src/lib/libcrypto/conf/conf_def.c +++ b/src/lib/libcrypto/conf/conf_def.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: conf_def.c,v 1.25 2014/07/08 16:36:45 bcook Exp $ */ | 1 | /* $OpenBSD: conf_def.c,v 1.26 2014/07/09 11:10:50 bcook 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 | * |
@@ -88,8 +88,6 @@ static int def_dump(const CONF *conf, BIO *bp); | |||
88 | static int def_is_number(const CONF *conf, char c); | 88 | static int def_is_number(const CONF *conf, char c); |
89 | static int def_to_int(const CONF *conf, char c); | 89 | static int def_to_int(const CONF *conf, char c); |
90 | 90 | ||
91 | const char CONF_def_version[]="CONF_def" OPENSSL_VERSION_PTEXT; | ||
92 | |||
93 | static CONF_METHOD default_method = { | 91 | static CONF_METHOD default_method = { |
94 | .name = "OpenSSL default", | 92 | .name = "OpenSSL default", |
95 | .create = def_create, | 93 | .create = def_create, |
diff --git a/src/lib/libcrypto/conf/conf_lib.c b/src/lib/libcrypto/conf/conf_lib.c index ae96f2ffbd..2119eb6219 100644 --- a/src/lib/libcrypto/conf/conf_lib.c +++ b/src/lib/libcrypto/conf/conf_lib.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: conf_lib.c,v 1.11 2014/06/12 15:49:28 deraadt Exp $ */ | 1 | /* $OpenBSD: conf_lib.c,v 1.12 2014/07/09 11:10:50 bcook Exp $ */ |
2 | /* Written by Richard Levitte (richard@levitte.org) for the OpenSSL | 2 | /* Written by Richard Levitte (richard@levitte.org) for the OpenSSL |
3 | * project 2000. | 3 | * project 2000. |
4 | */ | 4 | */ |
@@ -63,8 +63,6 @@ | |||
63 | #include <openssl/conf_api.h> | 63 | #include <openssl/conf_api.h> |
64 | #include <openssl/lhash.h> | 64 | #include <openssl/lhash.h> |
65 | 65 | ||
66 | const char CONF_version[]="CONF" OPENSSL_VERSION_PTEXT; | ||
67 | |||
68 | static CONF_METHOD *default_CONF_method = NULL; | 66 | static CONF_METHOD *default_CONF_method = NULL; |
69 | 67 | ||
70 | /* Init a 'CONF' structure from an old LHASH */ | 68 | /* Init a 'CONF' structure from an old LHASH */ |
diff --git a/src/lib/libcrypto/des/des_ver.h b/src/lib/libcrypto/des/des_ver.h deleted file mode 100644 index 53e3d82ac5..0000000000 --- a/src/lib/libcrypto/des/des_ver.h +++ /dev/null | |||
@@ -1,64 +0,0 @@ | |||
1 | /* $OpenBSD: des_ver.h,v 1.9 2014/06/12 15:49:28 deraadt Exp $ */ | ||
2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | ||
3 | * All rights reserved. | ||
4 | * | ||
5 | * This package is an SSL implementation written | ||
6 | * by Eric Young (eay@cryptsoft.com). | ||
7 | * The implementation was written so as to conform with Netscapes SSL. | ||
8 | * | ||
9 | * This library is free for commercial and non-commercial use as long as | ||
10 | * the following conditions are aheared to. The following conditions | ||
11 | * apply to all code found in this distribution, be it the RC4, RSA, | ||
12 | * lhash, DES, etc., code; not just the SSL code. The SSL documentation | ||
13 | * included with this distribution is covered by the same copyright terms | ||
14 | * except that the holder is Tim Hudson (tjh@cryptsoft.com). | ||
15 | * | ||
16 | * Copyright remains Eric Young's, and as such any Copyright notices in | ||
17 | * the code are not to be removed. | ||
18 | * If this package is used in a product, Eric Young should be given attribution | ||
19 | * as the author of the parts of the library used. | ||
20 | * This can be in the form of a textual message at program startup or | ||
21 | * in documentation (online or textual) provided with the package. | ||
22 | * | ||
23 | * Redistribution and use in source and binary forms, with or without | ||
24 | * modification, are permitted provided that the following conditions | ||
25 | * are met: | ||
26 | * 1. Redistributions of source code must retain the copyright | ||
27 | * notice, this list of conditions and the following disclaimer. | ||
28 | * 2. Redistributions in binary form must reproduce the above copyright | ||
29 | * notice, this list of conditions and the following disclaimer in the | ||
30 | * documentation and/or other materials provided with the distribution. | ||
31 | * 3. All advertising materials mentioning features or use of this software | ||
32 | * must display the following acknowledgement: | ||
33 | * "This product includes cryptographic software written by | ||
34 | * Eric Young (eay@cryptsoft.com)" | ||
35 | * The word 'cryptographic' can be left out if the rouines from the library | ||
36 | * being used are not cryptographic related :-). | ||
37 | * 4. If you include any Windows specific code (or a derivative thereof) from | ||
38 | * the apps directory (application code) you must include an acknowledgement: | ||
39 | * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" | ||
40 | * | ||
41 | * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND | ||
42 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | ||
43 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | ||
44 | * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE | ||
45 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | ||
46 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | ||
47 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | ||
48 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | ||
49 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | ||
50 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | ||
51 | * SUCH DAMAGE. | ||
52 | * | ||
53 | * The licence and distribution terms for any publically available version or | ||
54 | * derivative of this code cannot be changed. i.e. this code cannot simply be | ||
55 | * copied and put under another distribution licence | ||
56 | * [including the GNU Public Licence.] | ||
57 | */ | ||
58 | |||
59 | /* The following macros make sure the names are different from libdes names */ | ||
60 | #define DES_version OSSL_DES_version | ||
61 | #define libdes_version OSSL_libdes_version | ||
62 | |||
63 | extern const char OSSL_DES_version[]; /* SSLeay version string */ | ||
64 | extern const char OSSL_libdes_version[]; /* old libdes version string */ | ||
diff --git a/src/lib/libcrypto/des/ecb_enc.c b/src/lib/libcrypto/des/ecb_enc.c index 808c3b9e1b..8eaf3e9582 100644 --- a/src/lib/libcrypto/des/ecb_enc.c +++ b/src/lib/libcrypto/des/ecb_enc.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: ecb_enc.c,v 1.14 2014/06/12 15:49:28 deraadt Exp $ */ | 1 | /* $OpenBSD: ecb_enc.c,v 1.15 2014/07/09 11:10:50 bcook 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 | * |
@@ -57,13 +57,9 @@ | |||
57 | */ | 57 | */ |
58 | 58 | ||
59 | #include "des_locl.h" | 59 | #include "des_locl.h" |
60 | #include "des_ver.h" | ||
61 | #include <openssl/opensslv.h> | 60 | #include <openssl/opensslv.h> |
62 | #include <openssl/bio.h> | 61 | #include <openssl/bio.h> |
63 | 62 | ||
64 | const char libdes_version[]="libdes" OPENSSL_VERSION_PTEXT; | ||
65 | const char DES_version[]="DES" OPENSSL_VERSION_PTEXT; | ||
66 | |||
67 | const char *DES_options(void) | 63 | const char *DES_options(void) |
68 | { | 64 | { |
69 | static int init=1; | 65 | static int init=1; |
diff --git a/src/lib/libcrypto/dh/dh_lib.c b/src/lib/libcrypto/dh/dh_lib.c index 6500d157e9..793a8afdce 100644 --- a/src/lib/libcrypto/dh/dh_lib.c +++ b/src/lib/libcrypto/dh/dh_lib.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: dh_lib.c,v 1.15 2014/06/12 15:49:28 deraadt Exp $ */ | 1 | /* $OpenBSD: dh_lib.c,v 1.16 2014/07/09 11:10:50 bcook 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 | * |
@@ -64,8 +64,6 @@ | |||
64 | #include <openssl/engine.h> | 64 | #include <openssl/engine.h> |
65 | #endif | 65 | #endif |
66 | 66 | ||
67 | const char DH_version[]="Diffie-Hellman" OPENSSL_VERSION_PTEXT; | ||
68 | |||
69 | static const DH_METHOD *default_DH_method = NULL; | 67 | static const DH_METHOD *default_DH_method = NULL; |
70 | 68 | ||
71 | void DH_set_default_method(const DH_METHOD *meth) | 69 | void DH_set_default_method(const DH_METHOD *meth) |
diff --git a/src/lib/libcrypto/dsa/dsa_lib.c b/src/lib/libcrypto/dsa/dsa_lib.c index 334d5ba7f2..19f80687f8 100644 --- a/src/lib/libcrypto/dsa/dsa_lib.c +++ b/src/lib/libcrypto/dsa/dsa_lib.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: dsa_lib.c,v 1.17 2014/07/09 10:16:24 miod Exp $ */ | 1 | /* $OpenBSD: dsa_lib.c,v 1.18 2014/07/09 11:10:50 bcook 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 | * |
@@ -70,8 +70,6 @@ | |||
70 | #include <openssl/dh.h> | 70 | #include <openssl/dh.h> |
71 | #endif | 71 | #endif |
72 | 72 | ||
73 | const char DSA_version[] = "DSA" OPENSSL_VERSION_PTEXT; | ||
74 | |||
75 | static const DSA_METHOD *default_DSA_method = NULL; | 73 | static const DSA_METHOD *default_DSA_method = NULL; |
76 | 74 | ||
77 | void | 75 | void |
diff --git a/src/lib/libcrypto/ec/ec_lib.c b/src/lib/libcrypto/ec/ec_lib.c index 065eaee03e..f2a4fb8053 100644 --- a/src/lib/libcrypto/ec/ec_lib.c +++ b/src/lib/libcrypto/ec/ec_lib.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: ec_lib.c,v 1.12 2014/06/12 15:49:29 deraadt Exp $ */ | 1 | /* $OpenBSD: ec_lib.c,v 1.13 2014/07/09 11:10:50 bcook Exp $ */ |
2 | /* | 2 | /* |
3 | * Originally written by Bodo Moeller for the OpenSSL project. | 3 | * Originally written by Bodo Moeller for the OpenSSL project. |
4 | */ | 4 | */ |
@@ -68,9 +68,6 @@ | |||
68 | 68 | ||
69 | #include "ec_lcl.h" | 69 | #include "ec_lcl.h" |
70 | 70 | ||
71 | static const char EC_version[] = "EC" OPENSSL_VERSION_PTEXT; | ||
72 | |||
73 | |||
74 | /* functions for EC_GROUP objects */ | 71 | /* functions for EC_GROUP objects */ |
75 | 72 | ||
76 | EC_GROUP * | 73 | EC_GROUP * |
diff --git a/src/lib/libcrypto/ecdh/ech_lib.c b/src/lib/libcrypto/ecdh/ech_lib.c index 227448afb1..99390c2373 100644 --- a/src/lib/libcrypto/ecdh/ech_lib.c +++ b/src/lib/libcrypto/ecdh/ech_lib.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: ech_lib.c,v 1.5 2014/06/12 15:49:29 deraadt Exp $ */ | 1 | /* $OpenBSD: ech_lib.c,v 1.6 2014/07/09 11:10:50 bcook Exp $ */ |
2 | /* ==================================================================== | 2 | /* ==================================================================== |
3 | * Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED. | 3 | * Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED. |
4 | * | 4 | * |
@@ -74,8 +74,6 @@ | |||
74 | #endif | 74 | #endif |
75 | #include <openssl/err.h> | 75 | #include <openssl/err.h> |
76 | 76 | ||
77 | const char ECDH_version[]="ECDH" OPENSSL_VERSION_PTEXT; | ||
78 | |||
79 | static const ECDH_METHOD *default_ECDH_method = NULL; | 77 | static const ECDH_METHOD *default_ECDH_method = NULL; |
80 | 78 | ||
81 | static void *ecdh_data_new(void); | 79 | static void *ecdh_data_new(void); |
diff --git a/src/lib/libcrypto/ecdsa/ecs_lib.c b/src/lib/libcrypto/ecdsa/ecs_lib.c index 0293e22797..a1c05d1a41 100644 --- a/src/lib/libcrypto/ecdsa/ecs_lib.c +++ b/src/lib/libcrypto/ecdsa/ecs_lib.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: ecs_lib.c,v 1.5 2014/06/12 15:49:29 deraadt Exp $ */ | 1 | /* $OpenBSD: ecs_lib.c,v 1.6 2014/07/09 11:10:50 bcook Exp $ */ |
2 | /* ==================================================================== | 2 | /* ==================================================================== |
3 | * Copyright (c) 1998-2005 The OpenSSL Project. All rights reserved. | 3 | * Copyright (c) 1998-2005 The OpenSSL Project. All rights reserved. |
4 | * | 4 | * |
@@ -61,8 +61,6 @@ | |||
61 | #include <openssl/err.h> | 61 | #include <openssl/err.h> |
62 | #include <openssl/bn.h> | 62 | #include <openssl/bn.h> |
63 | 63 | ||
64 | const char ECDSA_version[]="ECDSA" OPENSSL_VERSION_PTEXT; | ||
65 | |||
66 | static const ECDSA_METHOD *default_ECDSA_method = NULL; | 64 | static const ECDSA_METHOD *default_ECDSA_method = NULL; |
67 | 65 | ||
68 | static void *ecdsa_data_new(void); | 66 | static void *ecdsa_data_new(void); |
diff --git a/src/lib/libcrypto/evp/evp_enc.c b/src/lib/libcrypto/evp/evp_enc.c index 5c3da7c476..c384a3b225 100644 --- a/src/lib/libcrypto/evp/evp_enc.c +++ b/src/lib/libcrypto/evp/evp_enc.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: evp_enc.c,v 1.20 2014/06/15 15:44:39 jsing Exp $ */ | 1 | /* $OpenBSD: evp_enc.c,v 1.21 2014/07/09 11:10:50 bcook 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 | * |
@@ -68,8 +68,6 @@ | |||
68 | 68 | ||
69 | #define M_do_cipher(ctx, out, in, inl) ctx->cipher->do_cipher(ctx, out, in, inl) | 69 | #define M_do_cipher(ctx, out, in, inl) ctx->cipher->do_cipher(ctx, out, in, inl) |
70 | 70 | ||
71 | const char EVP_version[] = "EVP" OPENSSL_VERSION_PTEXT; | ||
72 | |||
73 | void | 71 | void |
74 | EVP_CIPHER_CTX_init(EVP_CIPHER_CTX *ctx) | 72 | EVP_CIPHER_CTX_init(EVP_CIPHER_CTX *ctx) |
75 | { | 73 | { |
diff --git a/src/lib/libcrypto/idea/i_ecb.c b/src/lib/libcrypto/idea/i_ecb.c index 34c68c6ad8..dac456cdc5 100644 --- a/src/lib/libcrypto/idea/i_ecb.c +++ b/src/lib/libcrypto/idea/i_ecb.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: i_ecb.c,v 1.2 2014/06/12 15:49:29 deraadt Exp $ */ | 1 | /* $OpenBSD: i_ecb.c,v 1.3 2014/07/09 11:10:51 bcook 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 | * |
@@ -60,8 +60,6 @@ | |||
60 | #include "idea_lcl.h" | 60 | #include "idea_lcl.h" |
61 | #include <openssl/opensslv.h> | 61 | #include <openssl/opensslv.h> |
62 | 62 | ||
63 | const char IDEA_version[]="IDEA" OPENSSL_VERSION_PTEXT; | ||
64 | |||
65 | const char *idea_options(void) | 63 | const char *idea_options(void) |
66 | { | 64 | { |
67 | if (sizeof(short) != sizeof(IDEA_INT)) | 65 | if (sizeof(short) != sizeof(IDEA_INT)) |
diff --git a/src/lib/libcrypto/lhash/lhash.c b/src/lib/libcrypto/lhash/lhash.c index d2c923b0b8..bfac94a0f7 100644 --- a/src/lib/libcrypto/lhash/lhash.c +++ b/src/lib/libcrypto/lhash/lhash.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: lhash.c,v 1.15 2014/06/12 15:49:29 deraadt Exp $ */ | 1 | /* $OpenBSD: lhash.c,v 1.16 2014/07/09 11:10:51 bcook 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 | * |
@@ -100,8 +100,6 @@ | |||
100 | #include <openssl/crypto.h> | 100 | #include <openssl/crypto.h> |
101 | #include <openssl/lhash.h> | 101 | #include <openssl/lhash.h> |
102 | 102 | ||
103 | const char lh_version[] = "lhash" OPENSSL_VERSION_PTEXT; | ||
104 | |||
105 | #undef MIN_NODES | 103 | #undef MIN_NODES |
106 | #define MIN_NODES 16 | 104 | #define MIN_NODES 16 |
107 | #define UP_LOAD (2*LH_LOAD_MULT) /* load times 256 (default 2) */ | 105 | #define UP_LOAD (2*LH_LOAD_MULT) /* load times 256 (default 2) */ |
diff --git a/src/lib/libcrypto/md4/md4_dgst.c b/src/lib/libcrypto/md4/md4_dgst.c index 74799c5a2f..d4260c8700 100644 --- a/src/lib/libcrypto/md4/md4_dgst.c +++ b/src/lib/libcrypto/md4/md4_dgst.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: md4_dgst.c,v 1.11 2014/06/12 15:49:29 deraadt Exp $ */ | 1 | /* $OpenBSD: md4_dgst.c,v 1.12 2014/07/09 11:10:51 bcook 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 | * |
@@ -61,8 +61,6 @@ | |||
61 | #include <openssl/crypto.h> | 61 | #include <openssl/crypto.h> |
62 | #include "md4_locl.h" | 62 | #include "md4_locl.h" |
63 | 63 | ||
64 | const char MD4_version[]="MD4" OPENSSL_VERSION_PTEXT; | ||
65 | |||
66 | /* Implemented from RFC1186 The MD4 Message-Digest Algorithm | 64 | /* Implemented from RFC1186 The MD4 Message-Digest Algorithm |
67 | */ | 65 | */ |
68 | 66 | ||
diff --git a/src/lib/libcrypto/md5/md5_dgst.c b/src/lib/libcrypto/md5/md5_dgst.c index 62486efb85..6f2a2abceb 100644 --- a/src/lib/libcrypto/md5/md5_dgst.c +++ b/src/lib/libcrypto/md5/md5_dgst.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: md5_dgst.c,v 1.12 2014/06/12 15:49:29 deraadt Exp $ */ | 1 | /* $OpenBSD: md5_dgst.c,v 1.13 2014/07/09 11:10:51 bcook 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 | * |
@@ -61,8 +61,6 @@ | |||
61 | #include <openssl/opensslv.h> | 61 | #include <openssl/opensslv.h> |
62 | #include <openssl/crypto.h> | 62 | #include <openssl/crypto.h> |
63 | 63 | ||
64 | const char MD5_version[]="MD5" OPENSSL_VERSION_PTEXT; | ||
65 | |||
66 | /* Implemented from RFC1321 The MD5 Message-Digest Algorithm | 64 | /* Implemented from RFC1321 The MD5 Message-Digest Algorithm |
67 | */ | 65 | */ |
68 | 66 | ||
diff --git a/src/lib/libcrypto/pem/pem_lib.c b/src/lib/libcrypto/pem/pem_lib.c index 64011b4e68..8d33fe75a8 100644 --- a/src/lib/libcrypto/pem/pem_lib.c +++ b/src/lib/libcrypto/pem/pem_lib.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: pem_lib.c,v 1.28 2014/06/12 15:49:30 deraadt Exp $ */ | 1 | /* $OpenBSD: pem_lib.c,v 1.29 2014/07/09 11:10:51 bcook 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 | * |
@@ -74,8 +74,6 @@ | |||
74 | #include <openssl/engine.h> | 74 | #include <openssl/engine.h> |
75 | #endif | 75 | #endif |
76 | 76 | ||
77 | const char PEM_version[] = "PEM" OPENSSL_VERSION_PTEXT; | ||
78 | |||
79 | #define MIN_LENGTH 4 | 77 | #define MIN_LENGTH 4 |
80 | 78 | ||
81 | static int load_iv(char **fromp, unsigned char *to, int num); | 79 | static int load_iv(char **fromp, unsigned char *to, int num); |
diff --git a/src/lib/libcrypto/rc2/rc2_ecb.c b/src/lib/libcrypto/rc2/rc2_ecb.c index 72220a2e73..7687375278 100644 --- a/src/lib/libcrypto/rc2/rc2_ecb.c +++ b/src/lib/libcrypto/rc2/rc2_ecb.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: rc2_ecb.c,v 1.5 2014/06/12 15:49:30 deraadt Exp $ */ | 1 | /* $OpenBSD: rc2_ecb.c,v 1.6 2014/07/09 11:10:51 bcook 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 | * |
@@ -60,8 +60,6 @@ | |||
60 | #include "rc2_locl.h" | 60 | #include "rc2_locl.h" |
61 | #include <openssl/opensslv.h> | 61 | #include <openssl/opensslv.h> |
62 | 62 | ||
63 | const char RC2_version[]="RC2" OPENSSL_VERSION_PTEXT; | ||
64 | |||
65 | /* RC2 as implemented frm a posting from | 63 | /* RC2 as implemented frm a posting from |
66 | * Newsgroups: sci.crypt | 64 | * Newsgroups: sci.crypt |
67 | * Sender: pgut01@cs.auckland.ac.nz (Peter Gutmann) | 65 | * Sender: pgut01@cs.auckland.ac.nz (Peter Gutmann) |
diff --git a/src/lib/libcrypto/rc4/rc4_skey.c b/src/lib/libcrypto/rc4/rc4_skey.c index 46b7ead36a..282ed7cc1b 100644 --- a/src/lib/libcrypto/rc4/rc4_skey.c +++ b/src/lib/libcrypto/rc4/rc4_skey.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: rc4_skey.c,v 1.10 2014/06/12 15:49:30 deraadt Exp $ */ | 1 | /* $OpenBSD: rc4_skey.c,v 1.11 2014/07/09 11:10:51 bcook 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 | * |
@@ -60,8 +60,6 @@ | |||
60 | #include "rc4_locl.h" | 60 | #include "rc4_locl.h" |
61 | #include <openssl/opensslv.h> | 61 | #include <openssl/opensslv.h> |
62 | 62 | ||
63 | const char RC4_version[]="RC4" OPENSSL_VERSION_PTEXT; | ||
64 | |||
65 | const char *RC4_options(void) | 63 | const char *RC4_options(void) |
66 | { | 64 | { |
67 | #ifdef RC4_INDEX | 65 | #ifdef RC4_INDEX |
diff --git a/src/lib/libcrypto/rc5/rc5_ecb.c b/src/lib/libcrypto/rc5/rc5_ecb.c index 89d888e2a4..95d610e79e 100644 --- a/src/lib/libcrypto/rc5/rc5_ecb.c +++ b/src/lib/libcrypto/rc5/rc5_ecb.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: rc5_ecb.c,v 1.2 2014/06/12 15:49:30 deraadt Exp $ */ | 1 | /* $OpenBSD: rc5_ecb.c,v 1.3 2014/07/09 11:10:51 bcook 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 | * |
@@ -60,8 +60,6 @@ | |||
60 | #include "rc5_locl.h" | 60 | #include "rc5_locl.h" |
61 | #include <openssl/opensslv.h> | 61 | #include <openssl/opensslv.h> |
62 | 62 | ||
63 | const char RC5_version[]="RC5" OPENSSL_VERSION_PTEXT; | ||
64 | |||
65 | void RC5_32_ecb_encrypt(const unsigned char *in, unsigned char *out, | 63 | void RC5_32_ecb_encrypt(const unsigned char *in, unsigned char *out, |
66 | RC5_32_KEY *ks, int encrypt) | 64 | RC5_32_KEY *ks, int encrypt) |
67 | { | 65 | { |
diff --git a/src/lib/libcrypto/ripemd/rmd_dgst.c b/src/lib/libcrypto/ripemd/rmd_dgst.c index 44351c20ab..1d2498daec 100644 --- a/src/lib/libcrypto/ripemd/rmd_dgst.c +++ b/src/lib/libcrypto/ripemd/rmd_dgst.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: rmd_dgst.c,v 1.14 2014/06/12 15:49:30 deraadt Exp $ */ | 1 | /* $OpenBSD: rmd_dgst.c,v 1.15 2014/07/09 11:10:51 bcook 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 | * |
@@ -61,8 +61,6 @@ | |||
61 | #include <openssl/opensslv.h> | 61 | #include <openssl/opensslv.h> |
62 | #include <openssl/crypto.h> | 62 | #include <openssl/crypto.h> |
63 | 63 | ||
64 | const char RMD160_version[]="RIPE-MD160" OPENSSL_VERSION_PTEXT; | ||
65 | |||
66 | # ifdef RMD160_ASM | 64 | # ifdef RMD160_ASM |
67 | void ripemd160_block_x86(RIPEMD160_CTX *c, unsigned long *p,size_t num); | 65 | void ripemd160_block_x86(RIPEMD160_CTX *c, unsigned long *p,size_t num); |
68 | # define ripemd160_block ripemd160_block_x86 | 66 | # define ripemd160_block ripemd160_block_x86 |
diff --git a/src/lib/libcrypto/rsa/rsa_lib.c b/src/lib/libcrypto/rsa/rsa_lib.c index 62d415a27b..44a86700c2 100644 --- a/src/lib/libcrypto/rsa/rsa_lib.c +++ b/src/lib/libcrypto/rsa/rsa_lib.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: rsa_lib.c,v 1.23 2014/07/09 08:55:32 miod Exp $ */ | 1 | /* $OpenBSD: rsa_lib.c,v 1.24 2014/07/09 11:10:51 bcook 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 | * |
@@ -67,8 +67,6 @@ | |||
67 | #include <openssl/engine.h> | 67 | #include <openssl/engine.h> |
68 | #endif | 68 | #endif |
69 | 69 | ||
70 | const char RSA_version[] = "RSA" OPENSSL_VERSION_PTEXT; | ||
71 | |||
72 | static const RSA_METHOD *default_RSA_meth = NULL; | 70 | static const RSA_METHOD *default_RSA_meth = NULL; |
73 | 71 | ||
74 | RSA * | 72 | RSA * |
diff --git a/src/lib/libcrypto/sha/sha1dgst.c b/src/lib/libcrypto/sha/sha1dgst.c index 08c20ec806..94fabddd83 100644 --- a/src/lib/libcrypto/sha/sha1dgst.c +++ b/src/lib/libcrypto/sha/sha1dgst.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: sha1dgst.c,v 1.11 2014/06/12 15:49:30 deraadt Exp $ */ | 1 | /* $OpenBSD: sha1dgst.c,v 1.12 2014/07/09 11:10:51 bcook 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 | * |
@@ -65,8 +65,6 @@ | |||
65 | 65 | ||
66 | #include <openssl/opensslv.h> | 66 | #include <openssl/opensslv.h> |
67 | 67 | ||
68 | const char SHA1_version[]="SHA1" OPENSSL_VERSION_PTEXT; | ||
69 | |||
70 | /* The implementation is in ../md32_common.h */ | 68 | /* The implementation is in ../md32_common.h */ |
71 | 69 | ||
72 | #include "sha_locl.h" | 70 | #include "sha_locl.h" |
diff --git a/src/lib/libcrypto/sha/sha256.c b/src/lib/libcrypto/sha/sha256.c index f008724c0e..b623893be4 100644 --- a/src/lib/libcrypto/sha/sha256.c +++ b/src/lib/libcrypto/sha/sha256.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: sha256.c,v 1.4 2014/06/12 15:49:30 deraadt Exp $ */ | 1 | /* $OpenBSD: sha256.c,v 1.5 2014/07/09 11:10:51 bcook Exp $ */ |
2 | /* ==================================================================== | 2 | /* ==================================================================== |
3 | * Copyright (c) 2004 The OpenSSL Project. All rights reserved | 3 | * Copyright (c) 2004 The OpenSSL Project. All rights reserved |
4 | * according to the OpenSSL license [found in ../../LICENSE]. | 4 | * according to the OpenSSL license [found in ../../LICENSE]. |
@@ -15,8 +15,6 @@ | |||
15 | #include <openssl/sha.h> | 15 | #include <openssl/sha.h> |
16 | #include <openssl/opensslv.h> | 16 | #include <openssl/opensslv.h> |
17 | 17 | ||
18 | const char SHA256_version[]="SHA-256" OPENSSL_VERSION_PTEXT; | ||
19 | |||
20 | int SHA224_Init(SHA256_CTX *c) | 18 | int SHA224_Init(SHA256_CTX *c) |
21 | { | 19 | { |
22 | memset (c,0,sizeof(*c)); | 20 | memset (c,0,sizeof(*c)); |
diff --git a/src/lib/libcrypto/sha/sha512.c b/src/lib/libcrypto/sha/sha512.c index 5bc679680b..08b1564363 100644 --- a/src/lib/libcrypto/sha/sha512.c +++ b/src/lib/libcrypto/sha/sha512.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: sha512.c,v 1.9 2014/06/12 15:49:30 deraadt Exp $ */ | 1 | /* $OpenBSD: sha512.c,v 1.10 2014/07/09 11:10:51 bcook Exp $ */ |
2 | /* ==================================================================== | 2 | /* ==================================================================== |
3 | * Copyright (c) 2004 The OpenSSL Project. All rights reserved | 3 | * Copyright (c) 2004 The OpenSSL Project. All rights reserved |
4 | * according to the OpenSSL license [found in ../../LICENSE]. | 4 | * according to the OpenSSL license [found in ../../LICENSE]. |
@@ -51,8 +51,6 @@ | |||
51 | 51 | ||
52 | #include "cryptlib.h" | 52 | #include "cryptlib.h" |
53 | 53 | ||
54 | const char SHA512_version[]="SHA-512" OPENSSL_VERSION_PTEXT; | ||
55 | |||
56 | #if !defined(__STRICT_ALIGNMENT) || defined(SHA512_ASM) | 54 | #if !defined(__STRICT_ALIGNMENT) || defined(SHA512_ASM) |
57 | #define SHA512_BLOCK_CAN_MANAGE_UNALIGNED_DATA | 55 | #define SHA512_BLOCK_CAN_MANAGE_UNALIGNED_DATA |
58 | #endif | 56 | #endif |
diff --git a/src/lib/libcrypto/sha/sha_dgst.c b/src/lib/libcrypto/sha/sha_dgst.c index 5a88d2573d..a255450977 100644 --- a/src/lib/libcrypto/sha/sha_dgst.c +++ b/src/lib/libcrypto/sha/sha_dgst.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: sha_dgst.c,v 1.10 2014/06/12 15:49:30 deraadt Exp $ */ | 1 | /* $OpenBSD: sha_dgst.c,v 1.11 2014/07/09 11:10:51 bcook 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 | * |
@@ -65,8 +65,6 @@ | |||
65 | 65 | ||
66 | #include <openssl/opensslv.h> | 66 | #include <openssl/opensslv.h> |
67 | 67 | ||
68 | const char SHA_version[]="SHA" OPENSSL_VERSION_PTEXT; | ||
69 | |||
70 | /* The implementation is in ../md32_common.h */ | 68 | /* The implementation is in ../md32_common.h */ |
71 | 69 | ||
72 | #include "sha_locl.h" | 70 | #include "sha_locl.h" |
diff --git a/src/lib/libcrypto/stack/stack.c b/src/lib/libcrypto/stack/stack.c index 8132e0212d..5e3ab19cd3 100644 --- a/src/lib/libcrypto/stack/stack.c +++ b/src/lib/libcrypto/stack/stack.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: stack.c,v 1.15 2014/06/12 15:49:30 deraadt Exp $ */ | 1 | /* $OpenBSD: stack.c,v 1.16 2014/07/09 11:10:51 bcook 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 | * |
@@ -73,8 +73,6 @@ | |||
73 | #undef MIN_NODES | 73 | #undef MIN_NODES |
74 | #define MIN_NODES 4 | 74 | #define MIN_NODES 4 |
75 | 75 | ||
76 | const char STACK_version[]="Stack" OPENSSL_VERSION_PTEXT; | ||
77 | |||
78 | #include <errno.h> | 76 | #include <errno.h> |
79 | 77 | ||
80 | int | 78 | int |
diff --git a/src/lib/libcrypto/txt_db/txt_db.c b/src/lib/libcrypto/txt_db/txt_db.c index e8624a149c..274be5f4dc 100644 --- a/src/lib/libcrypto/txt_db/txt_db.c +++ b/src/lib/libcrypto/txt_db/txt_db.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: txt_db.c,v 1.16 2014/06/12 15:49:31 deraadt Exp $ */ | 1 | /* $OpenBSD: txt_db.c,v 1.17 2014/07/09 11:10:51 bcook 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 | * |
@@ -66,8 +66,6 @@ | |||
66 | #undef BUFSIZE | 66 | #undef BUFSIZE |
67 | #define BUFSIZE 512 | 67 | #define BUFSIZE 512 |
68 | 68 | ||
69 | const char TXT_DB_version[] = "TXT_DB" OPENSSL_VERSION_PTEXT; | ||
70 | |||
71 | TXT_DB * | 69 | TXT_DB * |
72 | TXT_DB_read(BIO *in, int num) | 70 | TXT_DB_read(BIO *in, int num) |
73 | { | 71 | { |
diff --git a/src/lib/libcrypto/x509/x509_vfy.c b/src/lib/libcrypto/x509/x509_vfy.c index b82af081c6..1771378746 100644 --- a/src/lib/libcrypto/x509/x509_vfy.c +++ b/src/lib/libcrypto/x509/x509_vfy.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: x509_vfy.c,v 1.29 2014/06/20 20:59:49 deraadt Exp $ */ | 1 | /* $OpenBSD: x509_vfy.c,v 1.30 2014/07/09 11:10:51 bcook 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 | * |
@@ -133,8 +133,6 @@ static int check_crl_chain(X509_STORE_CTX *ctx, STACK_OF(X509) *cert_path, | |||
133 | STACK_OF(X509) *crl_path); | 133 | STACK_OF(X509) *crl_path); |
134 | 134 | ||
135 | static int internal_verify(X509_STORE_CTX *ctx); | 135 | static int internal_verify(X509_STORE_CTX *ctx); |
136 | const char X509_version[]="X.509" OPENSSL_VERSION_PTEXT; | ||
137 | |||
138 | 136 | ||
139 | static int | 137 | static int |
140 | null_callback(int ok, X509_STORE_CTX *e) | 138 | null_callback(int ok, X509_STORE_CTX *e) |
diff --git a/src/lib/libssl/d1_lib.c b/src/lib/libssl/d1_lib.c index b90cc8eed3..10f55554e0 100644 --- a/src/lib/libssl/d1_lib.c +++ b/src/lib/libssl/d1_lib.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: d1_lib.c,v 1.21 2014/06/21 17:02:25 jsing Exp $ */ | 1 | /* $OpenBSD: d1_lib.c,v 1.22 2014/07/09 11:10:51 bcook Exp $ */ |
2 | /* | 2 | /* |
3 | * DTLS implementation written by Nagendra Modadugu | 3 | * DTLS implementation written by Nagendra Modadugu |
4 | * (nagendra@cs.stanford.edu) for the OpenSSL project 2005. | 4 | * (nagendra@cs.stanford.edu) for the OpenSSL project 2005. |
@@ -68,7 +68,6 @@ | |||
68 | #include "pqueue.h" | 68 | #include "pqueue.h" |
69 | #include "ssl_locl.h" | 69 | #include "ssl_locl.h" |
70 | 70 | ||
71 | const char dtls1_version_str[]="DTLSv1" OPENSSL_VERSION_PTEXT; | ||
72 | int dtls1_listen(SSL *s, struct sockaddr *client); | 71 | int dtls1_listen(SSL *s, struct sockaddr *client); |
73 | 72 | ||
74 | SSL3_ENC_METHOD DTLSv1_enc_data = { | 73 | SSL3_ENC_METHOD DTLSv1_enc_data = { |
diff --git a/src/lib/libssl/s3_lib.c b/src/lib/libssl/s3_lib.c index f98094181d..d07d7e7cbc 100644 --- a/src/lib/libssl/s3_lib.c +++ b/src/lib/libssl/s3_lib.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: s3_lib.c,v 1.65 2014/07/08 22:09:01 jsing Exp $ */ | 1 | /* $OpenBSD: s3_lib.c,v 1.66 2014/07/09 11:10:51 bcook 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 | * |
@@ -155,8 +155,6 @@ | |||
155 | #include <openssl/md5.h> | 155 | #include <openssl/md5.h> |
156 | #include <openssl/dh.h> | 156 | #include <openssl/dh.h> |
157 | 157 | ||
158 | const char ssl3_version_str[]="SSLv3" OPENSSL_VERSION_PTEXT; | ||
159 | |||
160 | #define SSL3_NUM_CIPHERS (sizeof(ssl3_ciphers) / sizeof(SSL_CIPHER)) | 158 | #define SSL3_NUM_CIPHERS (sizeof(ssl3_ciphers) / sizeof(SSL_CIPHER)) |
161 | 159 | ||
162 | /* | 160 | /* |
diff --git a/src/lib/libssl/src/crypto/aes/aes_misc.c b/src/lib/libssl/src/crypto/aes/aes_misc.c index 343fc33c70..6c1506dd79 100644 --- a/src/lib/libssl/src/crypto/aes/aes_misc.c +++ b/src/lib/libssl/src/crypto/aes/aes_misc.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: aes_misc.c,v 1.9 2014/07/09 09:10:07 miod Exp $ */ | 1 | /* $OpenBSD: aes_misc.c,v 1.10 2014/07/09 11:10:50 bcook Exp $ */ |
2 | /* ==================================================================== | 2 | /* ==================================================================== |
3 | * Copyright (c) 1998-2002 The OpenSSL Project. All rights reserved. | 3 | * Copyright (c) 1998-2002 The OpenSSL Project. All rights reserved. |
4 | * | 4 | * |
@@ -54,8 +54,6 @@ | |||
54 | #include <openssl/aes.h> | 54 | #include <openssl/aes.h> |
55 | #include "aes_locl.h" | 55 | #include "aes_locl.h" |
56 | 56 | ||
57 | const char AES_version[]="AES" OPENSSL_VERSION_PTEXT; | ||
58 | |||
59 | const char * | 57 | const char * |
60 | AES_options(void) | 58 | AES_options(void) |
61 | { | 59 | { |
diff --git a/src/lib/libssl/src/crypto/asn1/asn1_lib.c b/src/lib/libssl/src/crypto/asn1/asn1_lib.c index 81ef12b6e7..31e523fc75 100644 --- a/src/lib/libssl/src/crypto/asn1/asn1_lib.c +++ b/src/lib/libssl/src/crypto/asn1/asn1_lib.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: asn1_lib.c,v 1.27 2014/06/12 15:49:27 deraadt Exp $ */ | 1 | /* $OpenBSD: asn1_lib.c,v 1.28 2014/07/09 11:10:50 bcook 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 | * |
@@ -64,7 +64,6 @@ | |||
64 | 64 | ||
65 | static int asn1_get_length(const unsigned char **pp, int *inf, long *rl, int max); | 65 | static int asn1_get_length(const unsigned char **pp, int *inf, long *rl, int max); |
66 | static void asn1_put_length(unsigned char **pp, int length); | 66 | static void asn1_put_length(unsigned char **pp, int length); |
67 | const char ASN1_version[]="ASN.1" OPENSSL_VERSION_PTEXT; | ||
68 | 67 | ||
69 | static int | 68 | static int |
70 | _asn1_check_infinite_end(const unsigned char **p, long len) | 69 | _asn1_check_infinite_end(const unsigned char **p, long len) |
diff --git a/src/lib/libssl/src/crypto/bf/bf_ecb.c b/src/lib/libssl/src/crypto/bf/bf_ecb.c index 6d65b16a6a..305bd78260 100644 --- a/src/lib/libssl/src/crypto/bf/bf_ecb.c +++ b/src/lib/libssl/src/crypto/bf/bf_ecb.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: bf_ecb.c,v 1.5 2014/06/12 15:49:28 deraadt Exp $ */ | 1 | /* $OpenBSD: bf_ecb.c,v 1.6 2014/07/09 11:10:50 bcook 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 | * |
@@ -65,8 +65,6 @@ | |||
65 | * CAMBRIDGE SECURITY WORKSHOP, CAMBRIDGE, U.K., DECEMBER 9-11, 1993) | 65 | * CAMBRIDGE SECURITY WORKSHOP, CAMBRIDGE, U.K., DECEMBER 9-11, 1993) |
66 | */ | 66 | */ |
67 | 67 | ||
68 | const char BF_version[]="Blowfish" OPENSSL_VERSION_PTEXT; | ||
69 | |||
70 | const char *BF_options(void) | 68 | const char *BF_options(void) |
71 | { | 69 | { |
72 | #ifdef BF_PTR | 70 | #ifdef BF_PTR |
diff --git a/src/lib/libssl/src/crypto/bn/bn_lib.c b/src/lib/libssl/src/crypto/bn/bn_lib.c index 0de48a4588..49a967e9e0 100644 --- a/src/lib/libssl/src/crypto/bn/bn_lib.c +++ b/src/lib/libssl/src/crypto/bn/bn_lib.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: bn_lib.c,v 1.28 2014/06/12 15:49:28 deraadt Exp $ */ | 1 | /* $OpenBSD: bn_lib.c,v 1.29 2014/07/09 11:10:50 bcook 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 | * |
@@ -67,8 +67,6 @@ | |||
67 | #include "cryptlib.h" | 67 | #include "cryptlib.h" |
68 | #include "bn_lcl.h" | 68 | #include "bn_lcl.h" |
69 | 69 | ||
70 | const char BN_version[] = "Big Number" OPENSSL_VERSION_PTEXT; | ||
71 | |||
72 | /* This stuff appears to be completely unused, so is deprecated */ | 70 | /* This stuff appears to be completely unused, so is deprecated */ |
73 | #ifndef OPENSSL_NO_DEPRECATED | 71 | #ifndef OPENSSL_NO_DEPRECATED |
74 | /* For a 32 bit machine | 72 | /* For a 32 bit machine |
diff --git a/src/lib/libssl/src/crypto/camellia/cmll_misc.c b/src/lib/libssl/src/crypto/camellia/cmll_misc.c index 16304bab5c..5caa7a9874 100644 --- a/src/lib/libssl/src/crypto/camellia/cmll_misc.c +++ b/src/lib/libssl/src/crypto/camellia/cmll_misc.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: cmll_misc.c,v 1.3 2014/06/12 15:49:28 deraadt Exp $ */ | 1 | /* $OpenBSD: cmll_misc.c,v 1.4 2014/07/09 11:10:50 bcook Exp $ */ |
2 | /* ==================================================================== | 2 | /* ==================================================================== |
3 | * Copyright (c) 2006 The OpenSSL Project. All rights reserved. | 3 | * Copyright (c) 2006 The OpenSSL Project. All rights reserved. |
4 | * | 4 | * |
@@ -54,8 +54,6 @@ | |||
54 | #include <openssl/camellia.h> | 54 | #include <openssl/camellia.h> |
55 | #include "cmll_locl.h" | 55 | #include "cmll_locl.h" |
56 | 56 | ||
57 | const char CAMELLIA_version[]="CAMELLIA" OPENSSL_VERSION_PTEXT; | ||
58 | |||
59 | int private_Camellia_set_key(const unsigned char *userKey, const int bits, | 57 | int private_Camellia_set_key(const unsigned char *userKey, const int bits, |
60 | CAMELLIA_KEY *key) | 58 | CAMELLIA_KEY *key) |
61 | { | 59 | { |
diff --git a/src/lib/libssl/src/crypto/cast/c_ecb.c b/src/lib/libssl/src/crypto/cast/c_ecb.c index c94c50bd4f..c3a01b71ae 100644 --- a/src/lib/libssl/src/crypto/cast/c_ecb.c +++ b/src/lib/libssl/src/crypto/cast/c_ecb.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: c_ecb.c,v 1.6 2014/06/12 15:49:28 deraadt Exp $ */ | 1 | /* $OpenBSD: c_ecb.c,v 1.7 2014/07/09 11:10:50 bcook 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 | * |
@@ -60,8 +60,6 @@ | |||
60 | #include "cast_lcl.h" | 60 | #include "cast_lcl.h" |
61 | #include <openssl/opensslv.h> | 61 | #include <openssl/opensslv.h> |
62 | 62 | ||
63 | const char CAST_version[]="CAST" OPENSSL_VERSION_PTEXT; | ||
64 | |||
65 | void CAST_ecb_encrypt(const unsigned char *in, unsigned char *out, | 63 | void CAST_ecb_encrypt(const unsigned char *in, unsigned char *out, |
66 | const CAST_KEY *ks, int enc) | 64 | const CAST_KEY *ks, int enc) |
67 | { | 65 | { |
diff --git a/src/lib/libssl/src/crypto/conf/conf_def.c b/src/lib/libssl/src/crypto/conf/conf_def.c index a5cfd86ae2..f9b4a5b148 100644 --- a/src/lib/libssl/src/crypto/conf/conf_def.c +++ b/src/lib/libssl/src/crypto/conf/conf_def.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: conf_def.c,v 1.25 2014/07/08 16:36:45 bcook Exp $ */ | 1 | /* $OpenBSD: conf_def.c,v 1.26 2014/07/09 11:10:50 bcook 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 | * |
@@ -88,8 +88,6 @@ static int def_dump(const CONF *conf, BIO *bp); | |||
88 | static int def_is_number(const CONF *conf, char c); | 88 | static int def_is_number(const CONF *conf, char c); |
89 | static int def_to_int(const CONF *conf, char c); | 89 | static int def_to_int(const CONF *conf, char c); |
90 | 90 | ||
91 | const char CONF_def_version[]="CONF_def" OPENSSL_VERSION_PTEXT; | ||
92 | |||
93 | static CONF_METHOD default_method = { | 91 | static CONF_METHOD default_method = { |
94 | .name = "OpenSSL default", | 92 | .name = "OpenSSL default", |
95 | .create = def_create, | 93 | .create = def_create, |
diff --git a/src/lib/libssl/src/crypto/conf/conf_lib.c b/src/lib/libssl/src/crypto/conf/conf_lib.c index ae96f2ffbd..2119eb6219 100644 --- a/src/lib/libssl/src/crypto/conf/conf_lib.c +++ b/src/lib/libssl/src/crypto/conf/conf_lib.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: conf_lib.c,v 1.11 2014/06/12 15:49:28 deraadt Exp $ */ | 1 | /* $OpenBSD: conf_lib.c,v 1.12 2014/07/09 11:10:50 bcook Exp $ */ |
2 | /* Written by Richard Levitte (richard@levitte.org) for the OpenSSL | 2 | /* Written by Richard Levitte (richard@levitte.org) for the OpenSSL |
3 | * project 2000. | 3 | * project 2000. |
4 | */ | 4 | */ |
@@ -63,8 +63,6 @@ | |||
63 | #include <openssl/conf_api.h> | 63 | #include <openssl/conf_api.h> |
64 | #include <openssl/lhash.h> | 64 | #include <openssl/lhash.h> |
65 | 65 | ||
66 | const char CONF_version[]="CONF" OPENSSL_VERSION_PTEXT; | ||
67 | |||
68 | static CONF_METHOD *default_CONF_method = NULL; | 66 | static CONF_METHOD *default_CONF_method = NULL; |
69 | 67 | ||
70 | /* Init a 'CONF' structure from an old LHASH */ | 68 | /* Init a 'CONF' structure from an old LHASH */ |
diff --git a/src/lib/libssl/src/crypto/des/des_ver.h b/src/lib/libssl/src/crypto/des/des_ver.h deleted file mode 100644 index 53e3d82ac5..0000000000 --- a/src/lib/libssl/src/crypto/des/des_ver.h +++ /dev/null | |||
@@ -1,64 +0,0 @@ | |||
1 | /* $OpenBSD: des_ver.h,v 1.9 2014/06/12 15:49:28 deraadt Exp $ */ | ||
2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | ||
3 | * All rights reserved. | ||
4 | * | ||
5 | * This package is an SSL implementation written | ||
6 | * by Eric Young (eay@cryptsoft.com). | ||
7 | * The implementation was written so as to conform with Netscapes SSL. | ||
8 | * | ||
9 | * This library is free for commercial and non-commercial use as long as | ||
10 | * the following conditions are aheared to. The following conditions | ||
11 | * apply to all code found in this distribution, be it the RC4, RSA, | ||
12 | * lhash, DES, etc., code; not just the SSL code. The SSL documentation | ||
13 | * included with this distribution is covered by the same copyright terms | ||
14 | * except that the holder is Tim Hudson (tjh@cryptsoft.com). | ||
15 | * | ||
16 | * Copyright remains Eric Young's, and as such any Copyright notices in | ||
17 | * the code are not to be removed. | ||
18 | * If this package is used in a product, Eric Young should be given attribution | ||
19 | * as the author of the parts of the library used. | ||
20 | * This can be in the form of a textual message at program startup or | ||
21 | * in documentation (online or textual) provided with the package. | ||
22 | * | ||
23 | * Redistribution and use in source and binary forms, with or without | ||
24 | * modification, are permitted provided that the following conditions | ||
25 | * are met: | ||
26 | * 1. Redistributions of source code must retain the copyright | ||
27 | * notice, this list of conditions and the following disclaimer. | ||
28 | * 2. Redistributions in binary form must reproduce the above copyright | ||
29 | * notice, this list of conditions and the following disclaimer in the | ||
30 | * documentation and/or other materials provided with the distribution. | ||
31 | * 3. All advertising materials mentioning features or use of this software | ||
32 | * must display the following acknowledgement: | ||
33 | * "This product includes cryptographic software written by | ||
34 | * Eric Young (eay@cryptsoft.com)" | ||
35 | * The word 'cryptographic' can be left out if the rouines from the library | ||
36 | * being used are not cryptographic related :-). | ||
37 | * 4. If you include any Windows specific code (or a derivative thereof) from | ||
38 | * the apps directory (application code) you must include an acknowledgement: | ||
39 | * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" | ||
40 | * | ||
41 | * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND | ||
42 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | ||
43 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | ||
44 | * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE | ||
45 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | ||
46 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | ||
47 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | ||
48 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | ||
49 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | ||
50 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | ||
51 | * SUCH DAMAGE. | ||
52 | * | ||
53 | * The licence and distribution terms for any publically available version or | ||
54 | * derivative of this code cannot be changed. i.e. this code cannot simply be | ||
55 | * copied and put under another distribution licence | ||
56 | * [including the GNU Public Licence.] | ||
57 | */ | ||
58 | |||
59 | /* The following macros make sure the names are different from libdes names */ | ||
60 | #define DES_version OSSL_DES_version | ||
61 | #define libdes_version OSSL_libdes_version | ||
62 | |||
63 | extern const char OSSL_DES_version[]; /* SSLeay version string */ | ||
64 | extern const char OSSL_libdes_version[]; /* old libdes version string */ | ||
diff --git a/src/lib/libssl/src/crypto/des/ecb_enc.c b/src/lib/libssl/src/crypto/des/ecb_enc.c index 808c3b9e1b..8eaf3e9582 100644 --- a/src/lib/libssl/src/crypto/des/ecb_enc.c +++ b/src/lib/libssl/src/crypto/des/ecb_enc.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: ecb_enc.c,v 1.14 2014/06/12 15:49:28 deraadt Exp $ */ | 1 | /* $OpenBSD: ecb_enc.c,v 1.15 2014/07/09 11:10:50 bcook 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 | * |
@@ -57,13 +57,9 @@ | |||
57 | */ | 57 | */ |
58 | 58 | ||
59 | #include "des_locl.h" | 59 | #include "des_locl.h" |
60 | #include "des_ver.h" | ||
61 | #include <openssl/opensslv.h> | 60 | #include <openssl/opensslv.h> |
62 | #include <openssl/bio.h> | 61 | #include <openssl/bio.h> |
63 | 62 | ||
64 | const char libdes_version[]="libdes" OPENSSL_VERSION_PTEXT; | ||
65 | const char DES_version[]="DES" OPENSSL_VERSION_PTEXT; | ||
66 | |||
67 | const char *DES_options(void) | 63 | const char *DES_options(void) |
68 | { | 64 | { |
69 | static int init=1; | 65 | static int init=1; |
diff --git a/src/lib/libssl/src/crypto/dh/dh_lib.c b/src/lib/libssl/src/crypto/dh/dh_lib.c index 6500d157e9..793a8afdce 100644 --- a/src/lib/libssl/src/crypto/dh/dh_lib.c +++ b/src/lib/libssl/src/crypto/dh/dh_lib.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: dh_lib.c,v 1.15 2014/06/12 15:49:28 deraadt Exp $ */ | 1 | /* $OpenBSD: dh_lib.c,v 1.16 2014/07/09 11:10:50 bcook 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 | * |
@@ -64,8 +64,6 @@ | |||
64 | #include <openssl/engine.h> | 64 | #include <openssl/engine.h> |
65 | #endif | 65 | #endif |
66 | 66 | ||
67 | const char DH_version[]="Diffie-Hellman" OPENSSL_VERSION_PTEXT; | ||
68 | |||
69 | static const DH_METHOD *default_DH_method = NULL; | 67 | static const DH_METHOD *default_DH_method = NULL; |
70 | 68 | ||
71 | void DH_set_default_method(const DH_METHOD *meth) | 69 | void DH_set_default_method(const DH_METHOD *meth) |
diff --git a/src/lib/libssl/src/crypto/dsa/dsa_lib.c b/src/lib/libssl/src/crypto/dsa/dsa_lib.c index 334d5ba7f2..19f80687f8 100644 --- a/src/lib/libssl/src/crypto/dsa/dsa_lib.c +++ b/src/lib/libssl/src/crypto/dsa/dsa_lib.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: dsa_lib.c,v 1.17 2014/07/09 10:16:24 miod Exp $ */ | 1 | /* $OpenBSD: dsa_lib.c,v 1.18 2014/07/09 11:10:50 bcook 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 | * |
@@ -70,8 +70,6 @@ | |||
70 | #include <openssl/dh.h> | 70 | #include <openssl/dh.h> |
71 | #endif | 71 | #endif |
72 | 72 | ||
73 | const char DSA_version[] = "DSA" OPENSSL_VERSION_PTEXT; | ||
74 | |||
75 | static const DSA_METHOD *default_DSA_method = NULL; | 73 | static const DSA_METHOD *default_DSA_method = NULL; |
76 | 74 | ||
77 | void | 75 | void |
diff --git a/src/lib/libssl/src/crypto/ec/ec_lib.c b/src/lib/libssl/src/crypto/ec/ec_lib.c index 065eaee03e..f2a4fb8053 100644 --- a/src/lib/libssl/src/crypto/ec/ec_lib.c +++ b/src/lib/libssl/src/crypto/ec/ec_lib.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: ec_lib.c,v 1.12 2014/06/12 15:49:29 deraadt Exp $ */ | 1 | /* $OpenBSD: ec_lib.c,v 1.13 2014/07/09 11:10:50 bcook Exp $ */ |
2 | /* | 2 | /* |
3 | * Originally written by Bodo Moeller for the OpenSSL project. | 3 | * Originally written by Bodo Moeller for the OpenSSL project. |
4 | */ | 4 | */ |
@@ -68,9 +68,6 @@ | |||
68 | 68 | ||
69 | #include "ec_lcl.h" | 69 | #include "ec_lcl.h" |
70 | 70 | ||
71 | static const char EC_version[] = "EC" OPENSSL_VERSION_PTEXT; | ||
72 | |||
73 | |||
74 | /* functions for EC_GROUP objects */ | 71 | /* functions for EC_GROUP objects */ |
75 | 72 | ||
76 | EC_GROUP * | 73 | EC_GROUP * |
diff --git a/src/lib/libssl/src/crypto/ecdh/ech_lib.c b/src/lib/libssl/src/crypto/ecdh/ech_lib.c index 227448afb1..99390c2373 100644 --- a/src/lib/libssl/src/crypto/ecdh/ech_lib.c +++ b/src/lib/libssl/src/crypto/ecdh/ech_lib.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: ech_lib.c,v 1.5 2014/06/12 15:49:29 deraadt Exp $ */ | 1 | /* $OpenBSD: ech_lib.c,v 1.6 2014/07/09 11:10:50 bcook Exp $ */ |
2 | /* ==================================================================== | 2 | /* ==================================================================== |
3 | * Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED. | 3 | * Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED. |
4 | * | 4 | * |
@@ -74,8 +74,6 @@ | |||
74 | #endif | 74 | #endif |
75 | #include <openssl/err.h> | 75 | #include <openssl/err.h> |
76 | 76 | ||
77 | const char ECDH_version[]="ECDH" OPENSSL_VERSION_PTEXT; | ||
78 | |||
79 | static const ECDH_METHOD *default_ECDH_method = NULL; | 77 | static const ECDH_METHOD *default_ECDH_method = NULL; |
80 | 78 | ||
81 | static void *ecdh_data_new(void); | 79 | static void *ecdh_data_new(void); |
diff --git a/src/lib/libssl/src/crypto/ecdsa/ecs_lib.c b/src/lib/libssl/src/crypto/ecdsa/ecs_lib.c index 0293e22797..a1c05d1a41 100644 --- a/src/lib/libssl/src/crypto/ecdsa/ecs_lib.c +++ b/src/lib/libssl/src/crypto/ecdsa/ecs_lib.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: ecs_lib.c,v 1.5 2014/06/12 15:49:29 deraadt Exp $ */ | 1 | /* $OpenBSD: ecs_lib.c,v 1.6 2014/07/09 11:10:50 bcook Exp $ */ |
2 | /* ==================================================================== | 2 | /* ==================================================================== |
3 | * Copyright (c) 1998-2005 The OpenSSL Project. All rights reserved. | 3 | * Copyright (c) 1998-2005 The OpenSSL Project. All rights reserved. |
4 | * | 4 | * |
@@ -61,8 +61,6 @@ | |||
61 | #include <openssl/err.h> | 61 | #include <openssl/err.h> |
62 | #include <openssl/bn.h> | 62 | #include <openssl/bn.h> |
63 | 63 | ||
64 | const char ECDSA_version[]="ECDSA" OPENSSL_VERSION_PTEXT; | ||
65 | |||
66 | static const ECDSA_METHOD *default_ECDSA_method = NULL; | 64 | static const ECDSA_METHOD *default_ECDSA_method = NULL; |
67 | 65 | ||
68 | static void *ecdsa_data_new(void); | 66 | static void *ecdsa_data_new(void); |
diff --git a/src/lib/libssl/src/crypto/evp/evp_enc.c b/src/lib/libssl/src/crypto/evp/evp_enc.c index 5c3da7c476..c384a3b225 100644 --- a/src/lib/libssl/src/crypto/evp/evp_enc.c +++ b/src/lib/libssl/src/crypto/evp/evp_enc.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: evp_enc.c,v 1.20 2014/06/15 15:44:39 jsing Exp $ */ | 1 | /* $OpenBSD: evp_enc.c,v 1.21 2014/07/09 11:10:50 bcook 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 | * |
@@ -68,8 +68,6 @@ | |||
68 | 68 | ||
69 | #define M_do_cipher(ctx, out, in, inl) ctx->cipher->do_cipher(ctx, out, in, inl) | 69 | #define M_do_cipher(ctx, out, in, inl) ctx->cipher->do_cipher(ctx, out, in, inl) |
70 | 70 | ||
71 | const char EVP_version[] = "EVP" OPENSSL_VERSION_PTEXT; | ||
72 | |||
73 | void | 71 | void |
74 | EVP_CIPHER_CTX_init(EVP_CIPHER_CTX *ctx) | 72 | EVP_CIPHER_CTX_init(EVP_CIPHER_CTX *ctx) |
75 | { | 73 | { |
diff --git a/src/lib/libssl/src/crypto/idea/i_ecb.c b/src/lib/libssl/src/crypto/idea/i_ecb.c index 34c68c6ad8..dac456cdc5 100644 --- a/src/lib/libssl/src/crypto/idea/i_ecb.c +++ b/src/lib/libssl/src/crypto/idea/i_ecb.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: i_ecb.c,v 1.2 2014/06/12 15:49:29 deraadt Exp $ */ | 1 | /* $OpenBSD: i_ecb.c,v 1.3 2014/07/09 11:10:51 bcook 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 | * |
@@ -60,8 +60,6 @@ | |||
60 | #include "idea_lcl.h" | 60 | #include "idea_lcl.h" |
61 | #include <openssl/opensslv.h> | 61 | #include <openssl/opensslv.h> |
62 | 62 | ||
63 | const char IDEA_version[]="IDEA" OPENSSL_VERSION_PTEXT; | ||
64 | |||
65 | const char *idea_options(void) | 63 | const char *idea_options(void) |
66 | { | 64 | { |
67 | if (sizeof(short) != sizeof(IDEA_INT)) | 65 | if (sizeof(short) != sizeof(IDEA_INT)) |
diff --git a/src/lib/libssl/src/crypto/lhash/lhash.c b/src/lib/libssl/src/crypto/lhash/lhash.c index d2c923b0b8..bfac94a0f7 100644 --- a/src/lib/libssl/src/crypto/lhash/lhash.c +++ b/src/lib/libssl/src/crypto/lhash/lhash.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: lhash.c,v 1.15 2014/06/12 15:49:29 deraadt Exp $ */ | 1 | /* $OpenBSD: lhash.c,v 1.16 2014/07/09 11:10:51 bcook 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 | * |
@@ -100,8 +100,6 @@ | |||
100 | #include <openssl/crypto.h> | 100 | #include <openssl/crypto.h> |
101 | #include <openssl/lhash.h> | 101 | #include <openssl/lhash.h> |
102 | 102 | ||
103 | const char lh_version[] = "lhash" OPENSSL_VERSION_PTEXT; | ||
104 | |||
105 | #undef MIN_NODES | 103 | #undef MIN_NODES |
106 | #define MIN_NODES 16 | 104 | #define MIN_NODES 16 |
107 | #define UP_LOAD (2*LH_LOAD_MULT) /* load times 256 (default 2) */ | 105 | #define UP_LOAD (2*LH_LOAD_MULT) /* load times 256 (default 2) */ |
diff --git a/src/lib/libssl/src/crypto/md4/md4_dgst.c b/src/lib/libssl/src/crypto/md4/md4_dgst.c index 74799c5a2f..d4260c8700 100644 --- a/src/lib/libssl/src/crypto/md4/md4_dgst.c +++ b/src/lib/libssl/src/crypto/md4/md4_dgst.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: md4_dgst.c,v 1.11 2014/06/12 15:49:29 deraadt Exp $ */ | 1 | /* $OpenBSD: md4_dgst.c,v 1.12 2014/07/09 11:10:51 bcook 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 | * |
@@ -61,8 +61,6 @@ | |||
61 | #include <openssl/crypto.h> | 61 | #include <openssl/crypto.h> |
62 | #include "md4_locl.h" | 62 | #include "md4_locl.h" |
63 | 63 | ||
64 | const char MD4_version[]="MD4" OPENSSL_VERSION_PTEXT; | ||
65 | |||
66 | /* Implemented from RFC1186 The MD4 Message-Digest Algorithm | 64 | /* Implemented from RFC1186 The MD4 Message-Digest Algorithm |
67 | */ | 65 | */ |
68 | 66 | ||
diff --git a/src/lib/libssl/src/crypto/md5/md5_dgst.c b/src/lib/libssl/src/crypto/md5/md5_dgst.c index 62486efb85..6f2a2abceb 100644 --- a/src/lib/libssl/src/crypto/md5/md5_dgst.c +++ b/src/lib/libssl/src/crypto/md5/md5_dgst.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: md5_dgst.c,v 1.12 2014/06/12 15:49:29 deraadt Exp $ */ | 1 | /* $OpenBSD: md5_dgst.c,v 1.13 2014/07/09 11:10:51 bcook 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 | * |
@@ -61,8 +61,6 @@ | |||
61 | #include <openssl/opensslv.h> | 61 | #include <openssl/opensslv.h> |
62 | #include <openssl/crypto.h> | 62 | #include <openssl/crypto.h> |
63 | 63 | ||
64 | const char MD5_version[]="MD5" OPENSSL_VERSION_PTEXT; | ||
65 | |||
66 | /* Implemented from RFC1321 The MD5 Message-Digest Algorithm | 64 | /* Implemented from RFC1321 The MD5 Message-Digest Algorithm |
67 | */ | 65 | */ |
68 | 66 | ||
diff --git a/src/lib/libssl/src/crypto/pem/pem_lib.c b/src/lib/libssl/src/crypto/pem/pem_lib.c index 64011b4e68..8d33fe75a8 100644 --- a/src/lib/libssl/src/crypto/pem/pem_lib.c +++ b/src/lib/libssl/src/crypto/pem/pem_lib.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: pem_lib.c,v 1.28 2014/06/12 15:49:30 deraadt Exp $ */ | 1 | /* $OpenBSD: pem_lib.c,v 1.29 2014/07/09 11:10:51 bcook 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 | * |
@@ -74,8 +74,6 @@ | |||
74 | #include <openssl/engine.h> | 74 | #include <openssl/engine.h> |
75 | #endif | 75 | #endif |
76 | 76 | ||
77 | const char PEM_version[] = "PEM" OPENSSL_VERSION_PTEXT; | ||
78 | |||
79 | #define MIN_LENGTH 4 | 77 | #define MIN_LENGTH 4 |
80 | 78 | ||
81 | static int load_iv(char **fromp, unsigned char *to, int num); | 79 | static int load_iv(char **fromp, unsigned char *to, int num); |
diff --git a/src/lib/libssl/src/crypto/rc2/rc2_ecb.c b/src/lib/libssl/src/crypto/rc2/rc2_ecb.c index 72220a2e73..7687375278 100644 --- a/src/lib/libssl/src/crypto/rc2/rc2_ecb.c +++ b/src/lib/libssl/src/crypto/rc2/rc2_ecb.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: rc2_ecb.c,v 1.5 2014/06/12 15:49:30 deraadt Exp $ */ | 1 | /* $OpenBSD: rc2_ecb.c,v 1.6 2014/07/09 11:10:51 bcook 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 | * |
@@ -60,8 +60,6 @@ | |||
60 | #include "rc2_locl.h" | 60 | #include "rc2_locl.h" |
61 | #include <openssl/opensslv.h> | 61 | #include <openssl/opensslv.h> |
62 | 62 | ||
63 | const char RC2_version[]="RC2" OPENSSL_VERSION_PTEXT; | ||
64 | |||
65 | /* RC2 as implemented frm a posting from | 63 | /* RC2 as implemented frm a posting from |
66 | * Newsgroups: sci.crypt | 64 | * Newsgroups: sci.crypt |
67 | * Sender: pgut01@cs.auckland.ac.nz (Peter Gutmann) | 65 | * Sender: pgut01@cs.auckland.ac.nz (Peter Gutmann) |
diff --git a/src/lib/libssl/src/crypto/rc4/rc4_skey.c b/src/lib/libssl/src/crypto/rc4/rc4_skey.c index 46b7ead36a..282ed7cc1b 100644 --- a/src/lib/libssl/src/crypto/rc4/rc4_skey.c +++ b/src/lib/libssl/src/crypto/rc4/rc4_skey.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: rc4_skey.c,v 1.10 2014/06/12 15:49:30 deraadt Exp $ */ | 1 | /* $OpenBSD: rc4_skey.c,v 1.11 2014/07/09 11:10:51 bcook 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 | * |
@@ -60,8 +60,6 @@ | |||
60 | #include "rc4_locl.h" | 60 | #include "rc4_locl.h" |
61 | #include <openssl/opensslv.h> | 61 | #include <openssl/opensslv.h> |
62 | 62 | ||
63 | const char RC4_version[]="RC4" OPENSSL_VERSION_PTEXT; | ||
64 | |||
65 | const char *RC4_options(void) | 63 | const char *RC4_options(void) |
66 | { | 64 | { |
67 | #ifdef RC4_INDEX | 65 | #ifdef RC4_INDEX |
diff --git a/src/lib/libssl/src/crypto/rc5/rc5_ecb.c b/src/lib/libssl/src/crypto/rc5/rc5_ecb.c index 89d888e2a4..95d610e79e 100644 --- a/src/lib/libssl/src/crypto/rc5/rc5_ecb.c +++ b/src/lib/libssl/src/crypto/rc5/rc5_ecb.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: rc5_ecb.c,v 1.2 2014/06/12 15:49:30 deraadt Exp $ */ | 1 | /* $OpenBSD: rc5_ecb.c,v 1.3 2014/07/09 11:10:51 bcook 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 | * |
@@ -60,8 +60,6 @@ | |||
60 | #include "rc5_locl.h" | 60 | #include "rc5_locl.h" |
61 | #include <openssl/opensslv.h> | 61 | #include <openssl/opensslv.h> |
62 | 62 | ||
63 | const char RC5_version[]="RC5" OPENSSL_VERSION_PTEXT; | ||
64 | |||
65 | void RC5_32_ecb_encrypt(const unsigned char *in, unsigned char *out, | 63 | void RC5_32_ecb_encrypt(const unsigned char *in, unsigned char *out, |
66 | RC5_32_KEY *ks, int encrypt) | 64 | RC5_32_KEY *ks, int encrypt) |
67 | { | 65 | { |
diff --git a/src/lib/libssl/src/crypto/ripemd/rmd_dgst.c b/src/lib/libssl/src/crypto/ripemd/rmd_dgst.c index 44351c20ab..1d2498daec 100644 --- a/src/lib/libssl/src/crypto/ripemd/rmd_dgst.c +++ b/src/lib/libssl/src/crypto/ripemd/rmd_dgst.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: rmd_dgst.c,v 1.14 2014/06/12 15:49:30 deraadt Exp $ */ | 1 | /* $OpenBSD: rmd_dgst.c,v 1.15 2014/07/09 11:10:51 bcook 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 | * |
@@ -61,8 +61,6 @@ | |||
61 | #include <openssl/opensslv.h> | 61 | #include <openssl/opensslv.h> |
62 | #include <openssl/crypto.h> | 62 | #include <openssl/crypto.h> |
63 | 63 | ||
64 | const char RMD160_version[]="RIPE-MD160" OPENSSL_VERSION_PTEXT; | ||
65 | |||
66 | # ifdef RMD160_ASM | 64 | # ifdef RMD160_ASM |
67 | void ripemd160_block_x86(RIPEMD160_CTX *c, unsigned long *p,size_t num); | 65 | void ripemd160_block_x86(RIPEMD160_CTX *c, unsigned long *p,size_t num); |
68 | # define ripemd160_block ripemd160_block_x86 | 66 | # define ripemd160_block ripemd160_block_x86 |
diff --git a/src/lib/libssl/src/crypto/rsa/rsa_lib.c b/src/lib/libssl/src/crypto/rsa/rsa_lib.c index 62d415a27b..44a86700c2 100644 --- a/src/lib/libssl/src/crypto/rsa/rsa_lib.c +++ b/src/lib/libssl/src/crypto/rsa/rsa_lib.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: rsa_lib.c,v 1.23 2014/07/09 08:55:32 miod Exp $ */ | 1 | /* $OpenBSD: rsa_lib.c,v 1.24 2014/07/09 11:10:51 bcook 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 | * |
@@ -67,8 +67,6 @@ | |||
67 | #include <openssl/engine.h> | 67 | #include <openssl/engine.h> |
68 | #endif | 68 | #endif |
69 | 69 | ||
70 | const char RSA_version[] = "RSA" OPENSSL_VERSION_PTEXT; | ||
71 | |||
72 | static const RSA_METHOD *default_RSA_meth = NULL; | 70 | static const RSA_METHOD *default_RSA_meth = NULL; |
73 | 71 | ||
74 | RSA * | 72 | RSA * |
diff --git a/src/lib/libssl/src/crypto/sha/sha1dgst.c b/src/lib/libssl/src/crypto/sha/sha1dgst.c index 08c20ec806..94fabddd83 100644 --- a/src/lib/libssl/src/crypto/sha/sha1dgst.c +++ b/src/lib/libssl/src/crypto/sha/sha1dgst.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: sha1dgst.c,v 1.11 2014/06/12 15:49:30 deraadt Exp $ */ | 1 | /* $OpenBSD: sha1dgst.c,v 1.12 2014/07/09 11:10:51 bcook 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 | * |
@@ -65,8 +65,6 @@ | |||
65 | 65 | ||
66 | #include <openssl/opensslv.h> | 66 | #include <openssl/opensslv.h> |
67 | 67 | ||
68 | const char SHA1_version[]="SHA1" OPENSSL_VERSION_PTEXT; | ||
69 | |||
70 | /* The implementation is in ../md32_common.h */ | 68 | /* The implementation is in ../md32_common.h */ |
71 | 69 | ||
72 | #include "sha_locl.h" | 70 | #include "sha_locl.h" |
diff --git a/src/lib/libssl/src/crypto/sha/sha256.c b/src/lib/libssl/src/crypto/sha/sha256.c index f008724c0e..b623893be4 100644 --- a/src/lib/libssl/src/crypto/sha/sha256.c +++ b/src/lib/libssl/src/crypto/sha/sha256.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: sha256.c,v 1.4 2014/06/12 15:49:30 deraadt Exp $ */ | 1 | /* $OpenBSD: sha256.c,v 1.5 2014/07/09 11:10:51 bcook Exp $ */ |
2 | /* ==================================================================== | 2 | /* ==================================================================== |
3 | * Copyright (c) 2004 The OpenSSL Project. All rights reserved | 3 | * Copyright (c) 2004 The OpenSSL Project. All rights reserved |
4 | * according to the OpenSSL license [found in ../../LICENSE]. | 4 | * according to the OpenSSL license [found in ../../LICENSE]. |
@@ -15,8 +15,6 @@ | |||
15 | #include <openssl/sha.h> | 15 | #include <openssl/sha.h> |
16 | #include <openssl/opensslv.h> | 16 | #include <openssl/opensslv.h> |
17 | 17 | ||
18 | const char SHA256_version[]="SHA-256" OPENSSL_VERSION_PTEXT; | ||
19 | |||
20 | int SHA224_Init(SHA256_CTX *c) | 18 | int SHA224_Init(SHA256_CTX *c) |
21 | { | 19 | { |
22 | memset (c,0,sizeof(*c)); | 20 | memset (c,0,sizeof(*c)); |
diff --git a/src/lib/libssl/src/crypto/sha/sha512.c b/src/lib/libssl/src/crypto/sha/sha512.c index 5bc679680b..08b1564363 100644 --- a/src/lib/libssl/src/crypto/sha/sha512.c +++ b/src/lib/libssl/src/crypto/sha/sha512.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: sha512.c,v 1.9 2014/06/12 15:49:30 deraadt Exp $ */ | 1 | /* $OpenBSD: sha512.c,v 1.10 2014/07/09 11:10:51 bcook Exp $ */ |
2 | /* ==================================================================== | 2 | /* ==================================================================== |
3 | * Copyright (c) 2004 The OpenSSL Project. All rights reserved | 3 | * Copyright (c) 2004 The OpenSSL Project. All rights reserved |
4 | * according to the OpenSSL license [found in ../../LICENSE]. | 4 | * according to the OpenSSL license [found in ../../LICENSE]. |
@@ -51,8 +51,6 @@ | |||
51 | 51 | ||
52 | #include "cryptlib.h" | 52 | #include "cryptlib.h" |
53 | 53 | ||
54 | const char SHA512_version[]="SHA-512" OPENSSL_VERSION_PTEXT; | ||
55 | |||
56 | #if !defined(__STRICT_ALIGNMENT) || defined(SHA512_ASM) | 54 | #if !defined(__STRICT_ALIGNMENT) || defined(SHA512_ASM) |
57 | #define SHA512_BLOCK_CAN_MANAGE_UNALIGNED_DATA | 55 | #define SHA512_BLOCK_CAN_MANAGE_UNALIGNED_DATA |
58 | #endif | 56 | #endif |
diff --git a/src/lib/libssl/src/crypto/sha/sha_dgst.c b/src/lib/libssl/src/crypto/sha/sha_dgst.c index 5a88d2573d..a255450977 100644 --- a/src/lib/libssl/src/crypto/sha/sha_dgst.c +++ b/src/lib/libssl/src/crypto/sha/sha_dgst.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: sha_dgst.c,v 1.10 2014/06/12 15:49:30 deraadt Exp $ */ | 1 | /* $OpenBSD: sha_dgst.c,v 1.11 2014/07/09 11:10:51 bcook 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 | * |
@@ -65,8 +65,6 @@ | |||
65 | 65 | ||
66 | #include <openssl/opensslv.h> | 66 | #include <openssl/opensslv.h> |
67 | 67 | ||
68 | const char SHA_version[]="SHA" OPENSSL_VERSION_PTEXT; | ||
69 | |||
70 | /* The implementation is in ../md32_common.h */ | 68 | /* The implementation is in ../md32_common.h */ |
71 | 69 | ||
72 | #include "sha_locl.h" | 70 | #include "sha_locl.h" |
diff --git a/src/lib/libssl/src/crypto/stack/stack.c b/src/lib/libssl/src/crypto/stack/stack.c index 8132e0212d..5e3ab19cd3 100644 --- a/src/lib/libssl/src/crypto/stack/stack.c +++ b/src/lib/libssl/src/crypto/stack/stack.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: stack.c,v 1.15 2014/06/12 15:49:30 deraadt Exp $ */ | 1 | /* $OpenBSD: stack.c,v 1.16 2014/07/09 11:10:51 bcook 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 | * |
@@ -73,8 +73,6 @@ | |||
73 | #undef MIN_NODES | 73 | #undef MIN_NODES |
74 | #define MIN_NODES 4 | 74 | #define MIN_NODES 4 |
75 | 75 | ||
76 | const char STACK_version[]="Stack" OPENSSL_VERSION_PTEXT; | ||
77 | |||
78 | #include <errno.h> | 76 | #include <errno.h> |
79 | 77 | ||
80 | int | 78 | int |
diff --git a/src/lib/libssl/src/crypto/txt_db/txt_db.c b/src/lib/libssl/src/crypto/txt_db/txt_db.c index e8624a149c..274be5f4dc 100644 --- a/src/lib/libssl/src/crypto/txt_db/txt_db.c +++ b/src/lib/libssl/src/crypto/txt_db/txt_db.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: txt_db.c,v 1.16 2014/06/12 15:49:31 deraadt Exp $ */ | 1 | /* $OpenBSD: txt_db.c,v 1.17 2014/07/09 11:10:51 bcook 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 | * |
@@ -66,8 +66,6 @@ | |||
66 | #undef BUFSIZE | 66 | #undef BUFSIZE |
67 | #define BUFSIZE 512 | 67 | #define BUFSIZE 512 |
68 | 68 | ||
69 | const char TXT_DB_version[] = "TXT_DB" OPENSSL_VERSION_PTEXT; | ||
70 | |||
71 | TXT_DB * | 69 | TXT_DB * |
72 | TXT_DB_read(BIO *in, int num) | 70 | TXT_DB_read(BIO *in, int num) |
73 | { | 71 | { |
diff --git a/src/lib/libssl/src/crypto/x509/x509_vfy.c b/src/lib/libssl/src/crypto/x509/x509_vfy.c index b82af081c6..1771378746 100644 --- a/src/lib/libssl/src/crypto/x509/x509_vfy.c +++ b/src/lib/libssl/src/crypto/x509/x509_vfy.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: x509_vfy.c,v 1.29 2014/06/20 20:59:49 deraadt Exp $ */ | 1 | /* $OpenBSD: x509_vfy.c,v 1.30 2014/07/09 11:10:51 bcook 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 | * |
@@ -133,8 +133,6 @@ static int check_crl_chain(X509_STORE_CTX *ctx, STACK_OF(X509) *cert_path, | |||
133 | STACK_OF(X509) *crl_path); | 133 | STACK_OF(X509) *crl_path); |
134 | 134 | ||
135 | static int internal_verify(X509_STORE_CTX *ctx); | 135 | static int internal_verify(X509_STORE_CTX *ctx); |
136 | const char X509_version[]="X.509" OPENSSL_VERSION_PTEXT; | ||
137 | |||
138 | 136 | ||
139 | static int | 137 | static int |
140 | null_callback(int ok, X509_STORE_CTX *e) | 138 | null_callback(int ok, X509_STORE_CTX *e) |
diff --git a/src/lib/libssl/src/ssl/d1_lib.c b/src/lib/libssl/src/ssl/d1_lib.c index b90cc8eed3..10f55554e0 100644 --- a/src/lib/libssl/src/ssl/d1_lib.c +++ b/src/lib/libssl/src/ssl/d1_lib.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: d1_lib.c,v 1.21 2014/06/21 17:02:25 jsing Exp $ */ | 1 | /* $OpenBSD: d1_lib.c,v 1.22 2014/07/09 11:10:51 bcook Exp $ */ |
2 | /* | 2 | /* |
3 | * DTLS implementation written by Nagendra Modadugu | 3 | * DTLS implementation written by Nagendra Modadugu |
4 | * (nagendra@cs.stanford.edu) for the OpenSSL project 2005. | 4 | * (nagendra@cs.stanford.edu) for the OpenSSL project 2005. |
@@ -68,7 +68,6 @@ | |||
68 | #include "pqueue.h" | 68 | #include "pqueue.h" |
69 | #include "ssl_locl.h" | 69 | #include "ssl_locl.h" |
70 | 70 | ||
71 | const char dtls1_version_str[]="DTLSv1" OPENSSL_VERSION_PTEXT; | ||
72 | int dtls1_listen(SSL *s, struct sockaddr *client); | 71 | int dtls1_listen(SSL *s, struct sockaddr *client); |
73 | 72 | ||
74 | SSL3_ENC_METHOD DTLSv1_enc_data = { | 73 | SSL3_ENC_METHOD DTLSv1_enc_data = { |
diff --git a/src/lib/libssl/src/ssl/s3_lib.c b/src/lib/libssl/src/ssl/s3_lib.c index f98094181d..d07d7e7cbc 100644 --- a/src/lib/libssl/src/ssl/s3_lib.c +++ b/src/lib/libssl/src/ssl/s3_lib.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: s3_lib.c,v 1.65 2014/07/08 22:09:01 jsing Exp $ */ | 1 | /* $OpenBSD: s3_lib.c,v 1.66 2014/07/09 11:10:51 bcook 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 | * |
@@ -155,8 +155,6 @@ | |||
155 | #include <openssl/md5.h> | 155 | #include <openssl/md5.h> |
156 | #include <openssl/dh.h> | 156 | #include <openssl/dh.h> |
157 | 157 | ||
158 | const char ssl3_version_str[]="SSLv3" OPENSSL_VERSION_PTEXT; | ||
159 | |||
160 | #define SSL3_NUM_CIPHERS (sizeof(ssl3_ciphers) / sizeof(SSL_CIPHER)) | 158 | #define SSL3_NUM_CIPHERS (sizeof(ssl3_ciphers) / sizeof(SSL_CIPHER)) |
161 | 159 | ||
162 | /* | 160 | /* |
diff --git a/src/lib/libssl/src/ssl/t1_lib.c b/src/lib/libssl/src/ssl/t1_lib.c index 7b3393820b..03af6e29ef 100644 --- a/src/lib/libssl/src/ssl/t1_lib.c +++ b/src/lib/libssl/src/ssl/t1_lib.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: t1_lib.c,v 1.48 2014/06/19 21:29:51 tedu Exp $ */ | 1 | /* $OpenBSD: t1_lib.c,v 1.49 2014/07/09 11:10:51 bcook 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 | * |
@@ -117,8 +117,6 @@ | |||
117 | #include <openssl/rand.h> | 117 | #include <openssl/rand.h> |
118 | #include "ssl_locl.h" | 118 | #include "ssl_locl.h" |
119 | 119 | ||
120 | const char tls1_version_str[] = "TLSv1" OPENSSL_VERSION_PTEXT; | ||
121 | |||
122 | static int tls_decrypt_ticket(SSL *s, const unsigned char *tick, int ticklen, | 120 | static int tls_decrypt_ticket(SSL *s, const unsigned char *tick, int ticklen, |
123 | const unsigned char *sess_id, int sesslen, | 121 | const unsigned char *sess_id, int sesslen, |
124 | SSL_SESSION **psess); | 122 | SSL_SESSION **psess); |
diff --git a/src/lib/libssl/t1_lib.c b/src/lib/libssl/t1_lib.c index 7b3393820b..03af6e29ef 100644 --- a/src/lib/libssl/t1_lib.c +++ b/src/lib/libssl/t1_lib.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: t1_lib.c,v 1.48 2014/06/19 21:29:51 tedu Exp $ */ | 1 | /* $OpenBSD: t1_lib.c,v 1.49 2014/07/09 11:10:51 bcook 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 | * |
@@ -117,8 +117,6 @@ | |||
117 | #include <openssl/rand.h> | 117 | #include <openssl/rand.h> |
118 | #include "ssl_locl.h" | 118 | #include "ssl_locl.h" |
119 | 119 | ||
120 | const char tls1_version_str[] = "TLSv1" OPENSSL_VERSION_PTEXT; | ||
121 | |||
122 | static int tls_decrypt_ticket(SSL *s, const unsigned char *tick, int ticklen, | 120 | static int tls_decrypt_ticket(SSL *s, const unsigned char *tick, int ticklen, |
123 | const unsigned char *sess_id, int sesslen, | 121 | const unsigned char *sess_id, int sesslen, |
124 | SSL_SESSION **psess); | 122 | SSL_SESSION **psess); |