diff options
author | 2008-09-06 12:15:37 +0000 | |
---|---|---|
committer | 2008-09-06 12:15:37 +0000 | |
commit | 5650a0e1b1300b167aa354ad1f7b944b49271323 (patch) | |
tree | 59e4f7a5a066505c6ebabba02268d0b12f85bbb5 /lib/libcrypto/engine/eng_int.h | |
parent | adapt to sha2(3) API changes; ok millert@ (diff) | |
download | wireguard-openbsd-5650a0e1b1300b167aa354ad1f7b944b49271323.tar.xz wireguard-openbsd-5650a0e1b1300b167aa354ad1f7b944b49271323.zip |
import of OpenSSL 0.9.8h
Diffstat (limited to 'lib/libcrypto/engine/eng_int.h')
-rw-r--r-- | lib/libcrypto/engine/eng_int.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/lib/libcrypto/engine/eng_int.h b/lib/libcrypto/engine/eng_int.h index 38335f99cda..a5b1edebf4b 100644 --- a/lib/libcrypto/engine/eng_int.h +++ b/lib/libcrypto/engine/eng_int.h @@ -55,10 +55,16 @@ * Hudson (tjh@cryptsoft.com). * */ +/* ==================================================================== + * Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED. + * ECDH support in OpenSSL originally developed by + * SUN MICROSYSTEMS, INC., and contributed to the OpenSSL project. + */ #ifndef HEADER_ENGINE_INT_H #define HEADER_ENGINE_INT_H +#include "cryptlib.h" /* Take public definitions from engine.h */ #include <openssl/engine.h> @@ -146,7 +152,10 @@ struct engine_st const RSA_METHOD *rsa_meth; const DSA_METHOD *dsa_meth; const DH_METHOD *dh_meth; + const ECDH_METHOD *ecdh_meth; + const ECDSA_METHOD *ecdsa_meth; const RAND_METHOD *rand_meth; + const STORE_METHOD *store_meth; /* Cipher handling is via this callback */ ENGINE_CIPHERS_PTR ciphers; /* Digest handling is via this callback */ |