summaryrefslogtreecommitdiff
path: root/src/lib/libssl/src/crypto/err/err_all.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/libssl/src/crypto/err/err_all.c')
-rw-r--r--src/lib/libssl/src/crypto/err/err_all.c34
1 files changed, 19 insertions, 15 deletions
diff --git a/src/lib/libssl/src/crypto/err/err_all.c b/src/lib/libssl/src/crypto/err/err_all.c
index f874268e1a..ad820227d2 100644
--- a/src/lib/libssl/src/crypto/err/err_all.c
+++ b/src/lib/libssl/src/crypto/err/err_all.c
@@ -57,30 +57,32 @@
57 */ 57 */
58 58
59#include <stdio.h> 59#include <stdio.h>
60#include "asn1.h" 60#include <openssl/asn1.h>
61#include "bn.h" 61#include <openssl/bn.h>
62#include "buffer.h" 62#include <openssl/buffer.h>
63#include "bio.h" 63#include <openssl/bio.h>
64#ifndef NO_RSA 64#ifndef NO_RSA
65#include "rsa.h" 65#include <openssl/rsa.h>
66#endif 66#endif
67#ifdef RSAref 67#ifdef RSAref
68#include "rsaref.h" 68#include <openssl/rsaref.h>
69#endif 69#endif
70#ifndef NO_DH 70#ifndef NO_DH
71#include "dh.h" 71#include <openssl/dh.h>
72#endif 72#endif
73#ifndef NO_DSA 73#ifndef NO_DSA
74#include "dsa.h" 74#include <openssl/dsa.h>
75#endif 75#endif
76#include "evp.h" 76#include <openssl/evp.h>
77#include "objects.h" 77#include <openssl/objects.h>
78#include "pem.h" 78#include <openssl/pem2.h>
79#include "x509.h" 79#include <openssl/x509.h>
80#include "conf.h" 80#include <openssl/x509v3.h>
81#include "err.h" 81#include <openssl/conf.h>
82#include <openssl/pkcs12.h>
83#include <openssl/err.h>
82 84
83void ERR_load_crypto_strings() 85void ERR_load_crypto_strings(void)
84 { 86 {
85 static int done=0; 87 static int done=0;
86 88
@@ -110,7 +112,9 @@ void ERR_load_crypto_strings()
110 ERR_load_OBJ_strings(); 112 ERR_load_OBJ_strings();
111 ERR_load_PEM_strings(); 113 ERR_load_PEM_strings();
112 ERR_load_X509_strings(); 114 ERR_load_X509_strings();
115 ERR_load_X509V3_strings();
113 ERR_load_CRYPTO_strings(); 116 ERR_load_CRYPTO_strings();
114 ERR_load_PKCS7_strings(); 117 ERR_load_PKCS7_strings();
118 ERR_load_PKCS12_strings();
115#endif 119#endif
116 } 120 }