Deleted Added
full compact
err_all.c (142428) err_all.c (160817)
1/* crypto/err/err_all.c */
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 *

--- 59 unchanged lines hidden (view full) ---

68#include <openssl/rsa.h>
69#endif
70#ifndef OPENSSL_NO_DH
71#include <openssl/dh.h>
72#endif
73#ifndef OPENSSL_NO_DSA
74#include <openssl/dsa.h>
75#endif
1/* crypto/err/err_all.c */
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 *

--- 59 unchanged lines hidden (view full) ---

68#include <openssl/rsa.h>
69#endif
70#ifndef OPENSSL_NO_DH
71#include <openssl/dh.h>
72#endif
73#ifndef OPENSSL_NO_DSA
74#include <openssl/dsa.h>
75#endif
76#ifndef OPENSSL_NO_ECDSA
77#include <openssl/ecdsa.h>
78#endif
79#ifndef OPENSSL_NO_ECDH
80#include <openssl/ecdh.h>
81#endif
76#include <openssl/evp.h>
77#include <openssl/objects.h>
78#include <openssl/pem2.h>
79#include <openssl/x509.h>
80#include <openssl/x509v3.h>
81#include <openssl/conf.h>
82#include <openssl/pkcs12.h>
83#include <openssl/rand.h>
84#include <openssl/dso.h>
85#ifndef OPENSSL_NO_ENGINE
86#include <openssl/engine.h>
87#endif
82#include <openssl/evp.h>
83#include <openssl/objects.h>
84#include <openssl/pem2.h>
85#include <openssl/x509.h>
86#include <openssl/x509v3.h>
87#include <openssl/conf.h>
88#include <openssl/pkcs12.h>
89#include <openssl/rand.h>
90#include <openssl/dso.h>
91#ifndef OPENSSL_NO_ENGINE
92#include <openssl/engine.h>
93#endif
94#include <openssl/ui.h>
88#include <openssl/ocsp.h>
89#include <openssl/err.h>
95#include <openssl/ocsp.h>
96#include <openssl/err.h>
90#include <openssl/fips.h>
91
92void ERR_load_crypto_strings(void)
93 {
94 static int done=0;
95
96 if (done) return;
97 done=1;
98#ifndef OPENSSL_NO_ERR

--- 14 unchanged lines hidden (view full) ---

113#endif
114 ERR_load_X509_strings();
115 ERR_load_ASN1_strings();
116 ERR_load_CONF_strings();
117 ERR_load_CRYPTO_strings();
118#ifndef OPENSSL_NO_EC
119 ERR_load_EC_strings();
120#endif
97
98void ERR_load_crypto_strings(void)
99 {
100 static int done=0;
101
102 if (done) return;
103 done=1;
104#ifndef OPENSSL_NO_ERR

--- 14 unchanged lines hidden (view full) ---

119#endif
120 ERR_load_X509_strings();
121 ERR_load_ASN1_strings();
122 ERR_load_CONF_strings();
123 ERR_load_CRYPTO_strings();
124#ifndef OPENSSL_NO_EC
125 ERR_load_EC_strings();
126#endif
127#ifndef OPENSSL_NO_ECDSA
128 ERR_load_ECDSA_strings();
129#endif
130#ifndef OPENSSL_NO_ECDH
131 ERR_load_ECDH_strings();
132#endif
121 /* skip ERR_load_SSL_strings() because it is not in this library */
122 ERR_load_BIO_strings();
123 ERR_load_PKCS7_strings();
124 ERR_load_X509V3_strings();
125 ERR_load_PKCS12_strings();
126 ERR_load_RAND_strings();
127 ERR_load_DSO_strings();
128#ifndef OPENSSL_NO_ENGINE
129 ERR_load_ENGINE_strings();
130#endif
131 ERR_load_OCSP_strings();
132 ERR_load_UI_strings();
133#endif
133 /* skip ERR_load_SSL_strings() because it is not in this library */
134 ERR_load_BIO_strings();
135 ERR_load_PKCS7_strings();
136 ERR_load_X509V3_strings();
137 ERR_load_PKCS12_strings();
138 ERR_load_RAND_strings();
139 ERR_load_DSO_strings();
140#ifndef OPENSSL_NO_ENGINE
141 ERR_load_ENGINE_strings();
142#endif
143 ERR_load_OCSP_strings();
144 ERR_load_UI_strings();
145#endif
134#ifdef OPENSSL_FIPS
135 ERR_load_FIPS_strings();
136#endif
137 }
146 }