summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/engine/eng_openssl.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/libcrypto/engine/eng_openssl.c')
-rw-r--r--src/lib/libcrypto/engine/eng_openssl.c25
1 files changed, 1 insertions, 24 deletions
diff --git a/src/lib/libcrypto/engine/eng_openssl.c b/src/lib/libcrypto/engine/eng_openssl.c
index 7c139ae2ef..54579eea2e 100644
--- a/src/lib/libcrypto/engine/eng_openssl.c
+++ b/src/lib/libcrypto/engine/eng_openssl.c
@@ -55,11 +55,6 @@
55 * Hudson (tjh@cryptsoft.com). 55 * Hudson (tjh@cryptsoft.com).
56 * 56 *
57 */ 57 */
58/* ====================================================================
59 * Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED.
60 * ECDH support in OpenSSL originally developed by
61 * SUN MICROSYSTEMS, INC., and contributed to the OpenSSL project.
62 */
63 58
64 59
65#include <stdio.h> 60#include <stdio.h>
@@ -69,16 +64,6 @@
69#include <openssl/dso.h> 64#include <openssl/dso.h>
70#include <openssl/pem.h> 65#include <openssl/pem.h>
71#include <openssl/evp.h> 66#include <openssl/evp.h>
72#include <openssl/rand.h>
73#ifndef OPENSSL_NO_RSA
74#include <openssl/rsa.h>
75#endif
76#ifndef OPENSSL_NO_DSA
77#include <openssl/dsa.h>
78#endif
79#ifndef OPENSSL_NO_DH
80#include <openssl/dh.h>
81#endif
82 67
83/* This testing gunk is implemented (and explained) lower down. It also assumes 68/* This testing gunk is implemented (and explained) lower down. It also assumes
84 * the application explicitly calls "ENGINE_load_openssl()" because this is no 69 * the application explicitly calls "ENGINE_load_openssl()" because this is no
@@ -140,12 +125,6 @@ static int bind_helper(ENGINE *e)
140#ifndef OPENSSL_NO_DSA 125#ifndef OPENSSL_NO_DSA
141 || !ENGINE_set_DSA(e, DSA_get_default_method()) 126 || !ENGINE_set_DSA(e, DSA_get_default_method())
142#endif 127#endif
143#ifndef OPENSSL_NO_ECDH
144 || !ENGINE_set_ECDH(e, ECDH_OpenSSL())
145#endif
146#ifndef OPENSSL_NO_ECDSA
147 || !ENGINE_set_ECDSA(e, ECDSA_OpenSSL())
148#endif
149#ifndef OPENSSL_NO_DH 128#ifndef OPENSSL_NO_DH
150 || !ENGINE_set_DH(e, DH_get_default_method()) 129 || !ENGINE_set_DH(e, DH_get_default_method())
151#endif 130#endif
@@ -257,7 +236,6 @@ static const EVP_CIPHER test_r4_cipher=
257 sizeof(TEST_RC4_KEY), 236 sizeof(TEST_RC4_KEY),
258 NULL, 237 NULL,
259 NULL, 238 NULL,
260 NULL,
261 NULL 239 NULL
262 }; 240 };
263static const EVP_CIPHER test_r4_40_cipher= 241static const EVP_CIPHER test_r4_40_cipher=
@@ -271,7 +249,6 @@ static const EVP_CIPHER test_r4_40_cipher=
271 sizeof(TEST_RC4_KEY), 249 sizeof(TEST_RC4_KEY),
272 NULL, 250 NULL,
273 NULL, 251 NULL,
274 NULL,
275 NULL 252 NULL
276 }; 253 };
277static int openssl_ciphers(ENGINE *e, const EVP_CIPHER **cipher, 254static int openssl_ciphers(ENGINE *e, const EVP_CIPHER **cipher,
@@ -313,7 +290,7 @@ static int test_sha1_init(EVP_MD_CTX *ctx)
313#endif 290#endif
314 return SHA1_Init(ctx->md_data); 291 return SHA1_Init(ctx->md_data);
315 } 292 }
316static int test_sha1_update(EVP_MD_CTX *ctx,const void *data,size_t count) 293static int test_sha1_update(EVP_MD_CTX *ctx,const void *data,unsigned long count)
317 { 294 {
318#ifdef TEST_ENG_OPENSSL_SHA_P_UPDATE 295#ifdef TEST_ENG_OPENSSL_SHA_P_UPDATE
319 fprintf(stderr, "(TEST_ENG_OPENSSL_SHA) test_sha1_update() called\n"); 296 fprintf(stderr, "(TEST_ENG_OPENSSL_SHA) test_sha1_update() called\n");