diff options
Diffstat (limited to 'usr/src/common/openssl/crypto/err/err_all.c')
-rw-r--r-- | usr/src/common/openssl/crypto/err/err_all.c | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/usr/src/common/openssl/crypto/err/err_all.c b/usr/src/common/openssl/crypto/err/err_all.c index 8f69b3fc7e..b72555e0c4 100644 --- a/usr/src/common/openssl/crypto/err/err_all.c +++ b/usr/src/common/openssl/crypto/err/err_all.c @@ -56,6 +56,13 @@ * [including the GNU Public Licence.] */ +/* + * Copyright 2006 Sun Microsystems, Inc. All rights reserved. + * Use is subject to license terms. + */ + +#pragma ident "%Z%%M% %I% %E% SMI" + #include <stdio.h> #include <openssl/asn1.h> #include <openssl/bn.h> @@ -73,6 +80,12 @@ #ifndef OPENSSL_NO_DSA #include <openssl/dsa.h> #endif +#ifndef OPENSSL_NO_ECDSA +#include <openssl/ecdsa.h> +#endif +#ifndef OPENSSL_NO_ECDH +#include <openssl/ecdh.h> +#endif #include <openssl/evp.h> #include <openssl/objects.h> #include <openssl/pem2.h> @@ -85,6 +98,7 @@ #ifndef OPENSSL_NO_ENGINE #include <openssl/engine.h> #endif +#include <openssl/ui.h> #include <openssl/ocsp.h> #include <openssl/err.h> @@ -117,6 +131,12 @@ void ERR_load_crypto_strings(void) #ifndef OPENSSL_NO_EC ERR_load_EC_strings(); #endif +#ifndef OPENSSL_NO_ECDSA + ERR_load_ECDSA_strings(); +#endif +#ifndef OPENSSL_NO_ECDH + ERR_load_ECDH_strings(); +#endif /* skip ERR_load_SSL_strings() because it is not in this library */ ERR_load_BIO_strings(); ERR_load_PKCS7_strings(); |