~ubuntu-branches/ubuntu/maverick/openssl/maverick

« back to all changes in this revision

Viewing changes to crypto/engine/eng_int.h

  • Committer: Bazaar Package Importer
  • Author(s): Kurt Roeckx
  • Date: 2005-12-13 21:37:42 UTC
  • mto: (11.1.1 lenny)
  • mto: This revision was merged to the branch mainline in revision 4.
  • Revision ID: james.westby@ubuntu.com-20051213213742-d0ydaylf80l16bj1
Tags: upstream-0.9.8a
ImportĀ upstreamĀ versionĀ 0.9.8a

Show diffs side-by-side

added added

removed removed

Lines of Context:
55
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
 */
58
63
 
59
64
#ifndef HEADER_ENGINE_INT_H
60
65
#define HEADER_ENGINE_INT_H
61
66
 
 
67
#include "cryptlib.h"
62
68
/* Take public definitions from engine.h */
63
69
#include <openssl/engine.h>
64
70
 
146
152
        const RSA_METHOD *rsa_meth;
147
153
        const DSA_METHOD *dsa_meth;
148
154
        const DH_METHOD *dh_meth;
 
155
        const ECDH_METHOD *ecdh_meth;
 
156
        const ECDSA_METHOD *ecdsa_meth;
149
157
        const RAND_METHOD *rand_meth;
 
158
        const STORE_METHOD *store_meth;
150
159
        /* Cipher handling is via this callback */
151
160
        ENGINE_CIPHERS_PTR ciphers;
152
161
        /* Digest handling is via this callback */