Prepare for 0.9.8k release.
[oweals/openssl.git] / crypto / engine / eng_int.h
index 0407de9e1adc148ee8da64175dde44132b4c9fe1..a66f107a44d08f994b270d58e0e3c6595f4f0185 100644 (file)
  * 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,8 +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 */
@@ -162,6 +170,8 @@ struct engine_st
        ENGINE_LOAD_KEY_PTR load_privkey;
        ENGINE_LOAD_KEY_PTR load_pubkey;
 
+       ENGINE_SSL_CLIENT_CERT_PTR load_ssl_client_cert;
+
        const ENGINE_CMD_DEFN *cmd_defns;
        int flags;
        /* reference count on the structure itself */