Eneboo - Documentación para desarrolladores
src/libdigidoc/openssl/crypto/engine/eng_int.h
Ir a la documentación de este archivo.
00001 /* crypto/engine/eng_int.h */
00002 /* Written by Geoff Thorpe (geoff@geoffthorpe.net) for the OpenSSL
00003  * project 2000.
00004  */
00005 /* ====================================================================
00006  * Copyright (c) 1999-2001 The OpenSSL Project.  All rights reserved.
00007  *
00008  * Redistribution and use in source and binary forms, with or without
00009  * modification, are permitted provided that the following conditions
00010  * are met:
00011  *
00012  * 1. Redistributions of source code must retain the above copyright
00013  *    notice, this list of conditions and the following disclaimer. 
00014  *
00015  * 2. Redistributions in binary form must reproduce the above copyright
00016  *    notice, this list of conditions and the following disclaimer in
00017  *    the documentation and/or other materials provided with the
00018  *    distribution.
00019  *
00020  * 3. All advertising materials mentioning features or use of this
00021  *    software must display the following acknowledgment:
00022  *    "This product includes software developed by the OpenSSL Project
00023  *    for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)"
00024  *
00025  * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
00026  *    endorse or promote products derived from this software without
00027  *    prior written permission. For written permission, please contact
00028  *    licensing@OpenSSL.org.
00029  *
00030  * 5. Products derived from this software may not be called "OpenSSL"
00031  *    nor may "OpenSSL" appear in their names without prior written
00032  *    permission of the OpenSSL Project.
00033  *
00034  * 6. Redistributions of any form whatsoever must retain the following
00035  *    acknowledgment:
00036  *    "This product includes software developed by the OpenSSL Project
00037  *    for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)"
00038  *
00039  * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
00040  * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
00041  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
00042  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE OpenSSL PROJECT OR
00043  * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
00044  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
00045  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
00046  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
00047  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
00048  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
00049  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
00050  * OF THE POSSIBILITY OF SUCH DAMAGE.
00051  * ====================================================================
00052  *
00053  * This product includes cryptographic software written by Eric Young
00054  * (eay@cryptsoft.com).  This product includes software written by Tim
00055  * Hudson (tjh@cryptsoft.com).
00056  *
00057  */
00058 /* ====================================================================
00059  * Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED.
00060  * ECDH support in OpenSSL originally developed by 
00061  * SUN MICROSYSTEMS, INC., and contributed to the OpenSSL project.
00062  */
00063 
00064 #ifndef HEADER_ENGINE_INT_H
00065 #define HEADER_ENGINE_INT_H
00066 
00067 #include "cryptlib.h"
00068 /* Take public definitions from engine.h */
00069 #include <openssl/engine.h>
00070 
00071 #ifdef  __cplusplus
00072 extern "C" {
00073 #endif
00074 
00075 /* If we compile with this symbol defined, then both reference counts in the
00076  * ENGINE structure will be monitored with a line of output on stderr for each
00077  * change. This prints the engine's pointer address (truncated to unsigned int),
00078  * "struct" or "funct" to indicate the reference type, the before and after
00079  * reference count, and the file:line-number pair. The "engine_ref_debug"
00080  * statements must come *after* the change. */
00081 #ifdef ENGINE_REF_COUNT_DEBUG
00082 
00083 #define engine_ref_debug(e, isfunct, diff) \
00084         fprintf(stderr, "engine: %08x %s from %d to %d (%s:%d)\n", \
00085                 (unsigned int)(e), (isfunct ? "funct" : "struct"), \
00086                 ((isfunct) ? ((e)->funct_ref - (diff)) : ((e)->struct_ref - (diff))), \
00087                 ((isfunct) ? (e)->funct_ref : (e)->struct_ref), \
00088                 (__FILE__), (__LINE__));
00089 
00090 #else
00091 
00092 #define engine_ref_debug(e, isfunct, diff)
00093 
00094 #endif
00095 
00096 /* Any code that will need cleanup operations should use these functions to
00097  * register callbacks. ENGINE_cleanup() will call all registered callbacks in
00098  * order. NB: both the "add" functions assume CRYPTO_LOCK_ENGINE to already be
00099  * held (in "write" mode). */
00100 typedef void (ENGINE_CLEANUP_CB)(void);
00101 typedef struct st_engine_cleanup_item
00102         {
00103         ENGINE_CLEANUP_CB *cb;
00104         } ENGINE_CLEANUP_ITEM;
00105 DECLARE_STACK_OF(ENGINE_CLEANUP_ITEM)
00106 void engine_cleanup_add_first(ENGINE_CLEANUP_CB *cb);
00107 void engine_cleanup_add_last(ENGINE_CLEANUP_CB *cb);
00108 
00109 /* We need stacks of ENGINEs for use in eng_table.c */
00110 DECLARE_STACK_OF(ENGINE)
00111 
00112 /* If this symbol is defined then engine_table_select(), the function that is
00113  * used by RSA, DSA (etc) code to select registered ENGINEs, cache defaults and
00114  * functional references (etc), will display debugging summaries to stderr. */
00115 /* #define ENGINE_TABLE_DEBUG */
00116 
00117 /* This represents an implementation table. Dependent code should instantiate it
00118  * as a (ENGINE_TABLE *) pointer value set initially to NULL. */
00119 typedef struct st_engine_table ENGINE_TABLE;
00120 int engine_table_register(ENGINE_TABLE **table, ENGINE_CLEANUP_CB *cleanup,
00121                 ENGINE *e, const int *nids, int num_nids, int setdefault);
00122 void engine_table_unregister(ENGINE_TABLE **table, ENGINE *e);
00123 void engine_table_cleanup(ENGINE_TABLE **table);
00124 #ifndef ENGINE_TABLE_DEBUG
00125 ENGINE *engine_table_select(ENGINE_TABLE **table, int nid);
00126 #else
00127 ENGINE *engine_table_select_tmp(ENGINE_TABLE **table, int nid, const char *f, int l);
00128 #define engine_table_select(t,n) engine_table_select_tmp(t,n,__FILE__,__LINE__)
00129 #endif
00130 
00131 /* Internal versions of API functions that have control over locking. These are
00132  * used between C files when functionality needs to be shared but the caller may
00133  * already be controlling of the CRYPTO_LOCK_ENGINE lock. */
00134 int engine_unlocked_init(ENGINE *e);
00135 int engine_unlocked_finish(ENGINE *e, int unlock_for_handlers);
00136 int engine_free_util(ENGINE *e, int locked);
00137 
00138 /* This function will reset all "set"able values in an ENGINE to NULL. This
00139  * won't touch reference counts or ex_data, but is equivalent to calling all the
00140  * ENGINE_set_***() functions with a NULL value. */
00141 void engine_set_all_null(ENGINE *e);
00142 
00143 /* NB: Bitwise OR-able values for the "flags" variable in ENGINE are now exposed
00144  * in engine.h. */
00145 
00146 /* This is a structure for storing implementations of various crypto
00147  * algorithms and functions. */
00148 struct engine_st
00149         {
00150         const char *id;
00151         const char *name;
00152         const RSA_METHOD *rsa_meth;
00153         const DSA_METHOD *dsa_meth;
00154         const DH_METHOD *dh_meth;
00155         const ECDH_METHOD *ecdh_meth;
00156         const ECDSA_METHOD *ecdsa_meth;
00157         const RAND_METHOD *rand_meth;
00158         const STORE_METHOD *store_meth;
00159         /* Cipher handling is via this callback */
00160         ENGINE_CIPHERS_PTR ciphers;
00161         /* Digest handling is via this callback */
00162         ENGINE_DIGESTS_PTR digests;
00163 
00164 
00165         ENGINE_GEN_INT_FUNC_PTR destroy;
00166 
00167         ENGINE_GEN_INT_FUNC_PTR init;
00168         ENGINE_GEN_INT_FUNC_PTR finish;
00169         ENGINE_CTRL_FUNC_PTR ctrl;
00170         ENGINE_LOAD_KEY_PTR load_privkey;
00171         ENGINE_LOAD_KEY_PTR load_pubkey;
00172 
00173         ENGINE_SSL_CLIENT_CERT_PTR load_ssl_client_cert;
00174 
00175         const ENGINE_CMD_DEFN *cmd_defns;
00176         int flags;
00177         /* reference count on the structure itself */
00178         int struct_ref;
00179         /* reference count on usability of the engine type. NB: This
00180          * controls the loading and initialisation of any functionlity
00181          * required by this engine, whereas the previous count is
00182          * simply to cope with (de)allocation of this structure. Hence,
00183          * running_ref <= struct_ref at all times. */
00184         int funct_ref;
00185         /* A place to store per-ENGINE data */
00186         CRYPTO_EX_DATA ex_data;
00187         /* Used to maintain the linked-list of engines. */
00188         struct engine_st *prev;
00189         struct engine_st *next;
00190         };
00191 
00192 #ifdef  __cplusplus
00193 }
00194 #endif
00195 
00196 #endif /* HEADER_ENGINE_INT_H */
 Todo Clases Namespaces Archivos Funciones Variables 'typedefs' Enumeraciones Valores de enumeraciones Propiedades Amigas 'defines'