ossl_typ.h

Go to the documentation of this file.
00001 /* ====================================================================
00002  * Copyright (c) 1998-2001 The OpenSSL Project.  All rights reserved.
00003  *
00004  * Redistribution and use in source and binary forms, with or without
00005  * modification, are permitted provided that the following conditions
00006  * are met:
00007  *
00008  * 1. Redistributions of source code must retain the above copyright
00009  *    notice, this list of conditions and the following disclaimer. 
00010  *
00011  * 2. Redistributions in binary form must reproduce the above copyright
00012  *    notice, this list of conditions and the following disclaimer in
00013  *    the documentation and/or other materials provided with the
00014  *    distribution.
00015  *
00016  * 3. All advertising materials mentioning features or use of this
00017  *    software must display the following acknowledgment:
00018  *    "This product includes software developed by the OpenSSL Project
00019  *    for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
00020  *
00021  * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
00022  *    endorse or promote products derived from this software without
00023  *    prior written permission. For written permission, please contact
00024  *    [email protected].
00025  *
00026  * 5. Products derived from this software may not be called "OpenSSL"
00027  *    nor may "OpenSSL" appear in their names without prior written
00028  *    permission of the OpenSSL Project.
00029  *
00030  * 6. Redistributions of any form whatsoever must retain the following
00031  *    acknowledgment:
00032  *    "This product includes software developed by the OpenSSL Project
00033  *    for use in the OpenSSL Toolkit (http://www.openssl.org/)"
00034  *
00035  * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
00036  * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
00037  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
00038  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE OpenSSL PROJECT OR
00039  * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
00040  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
00041  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
00042  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
00043  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
00044  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
00045  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
00046  * OF THE POSSIBILITY OF SUCH DAMAGE.
00047  * ====================================================================
00048  *
00049  * This product includes cryptographic software written by Eric Young
00050  * ([email protected]).  This product includes software written by Tim
00051  * Hudson ([email protected]).
00052  *
00053  */
00054 
00055 #ifndef HEADER_OPENSSL_TYPES_H
00056 #define HEADER_OPENSSL_TYPES_H
00057 
00058 #if (defined(__SYMBIAN32__) && !defined(SYMBIAN))
00059 #define SYMBIAN
00060 #endif
00061 
00062 #include <openssl/e_os2.h>
00063 
00064 #ifdef NO_ASN1_TYPEDEFS
00065 #define ASN1_INTEGER            ASN1_STRING
00066 #define ASN1_ENUMERATED         ASN1_STRING
00067 #define ASN1_BIT_STRING         ASN1_STRING
00068 #define ASN1_OCTET_STRING       ASN1_STRING
00069 #define ASN1_PRINTABLESTRING    ASN1_STRING
00070 #define ASN1_T61STRING          ASN1_STRING
00071 #define ASN1_IA5STRING          ASN1_STRING
00072 #define ASN1_UTCTIME            ASN1_STRING
00073 #define ASN1_GENERALIZEDTIME    ASN1_STRING
00074 #define ASN1_TIME               ASN1_STRING
00075 #define ASN1_GENERALSTRING      ASN1_STRING
00076 #define ASN1_UNIVERSALSTRING    ASN1_STRING
00077 #define ASN1_BMPSTRING          ASN1_STRING
00078 #define ASN1_VISIBLESTRING      ASN1_STRING
00079 #define ASN1_UTF8STRING         ASN1_STRING
00080 #define ASN1_BOOLEAN            int
00081 #define ASN1_NULL               int
00082 #else
00083 typedef struct asn1_string_st ASN1_INTEGER;
00084 typedef struct asn1_string_st ASN1_ENUMERATED;
00085 typedef struct asn1_string_st ASN1_BIT_STRING;
00086 typedef struct asn1_string_st ASN1_OCTET_STRING;
00087 typedef struct asn1_string_st ASN1_PRINTABLESTRING;
00088 typedef struct asn1_string_st ASN1_T61STRING;
00089 typedef struct asn1_string_st ASN1_IA5STRING;
00090 typedef struct asn1_string_st ASN1_GENERALSTRING;
00091 typedef struct asn1_string_st ASN1_UNIVERSALSTRING;
00092 typedef struct asn1_string_st ASN1_BMPSTRING;
00093 typedef struct asn1_string_st ASN1_UTCTIME;
00094 typedef struct asn1_string_st ASN1_TIME;
00095 typedef struct asn1_string_st ASN1_GENERALIZEDTIME;
00096 typedef struct asn1_string_st ASN1_VISIBLESTRING;
00097 typedef struct asn1_string_st ASN1_UTF8STRING;
00098 typedef int ASN1_BOOLEAN;
00099 typedef int ASN1_NULL;
00100 #endif
00101 
00102 #ifdef OPENSSL_SYS_WIN32
00103 #undef X509_NAME
00104 #undef X509_CERT_PAIR
00105 #undef PKCS7_ISSUER_AND_SERIAL
00106 #endif
00107 
00108 #ifdef BIGNUM
00109 #undef BIGNUM
00110 #endif
00111 typedef struct bignum_st BIGNUM;
00112 typedef struct bignum_ctx BN_CTX;
00113 typedef struct bn_blinding_st BN_BLINDING;
00114 typedef struct bn_mont_ctx_st BN_MONT_CTX;
00115 typedef struct bn_recp_ctx_st BN_RECP_CTX;
00116 typedef struct bn_gencb_st BN_GENCB;
00117 
00118 typedef struct buf_mem_st BUF_MEM;
00119 
00120 typedef struct evp_cipher_st EVP_CIPHER;
00121 typedef struct evp_cipher_ctx_st EVP_CIPHER_CTX;
00122 typedef struct env_md_st EVP_MD;
00123 typedef struct env_md_ctx_st EVP_MD_CTX;
00124 typedef struct evp_pkey_st EVP_PKEY;
00125 
00126 typedef struct dh_st DH;
00127 typedef struct dh_method DH_METHOD;
00128 
00129 typedef struct dsa_st DSA;
00130 typedef struct dsa_method DSA_METHOD;
00131 
00132 typedef struct rsa_st RSA;
00133 typedef struct rsa_meth_st RSA_METHOD;
00134 
00135 typedef struct rand_meth_st RAND_METHOD;
00136 
00137 typedef struct ecdh_method ECDH_METHOD;
00138 typedef struct ecdsa_method ECDSA_METHOD;
00139 
00140 typedef struct x509_st X509;
00141 typedef struct X509_algor_st X509_ALGOR;
00142 typedef struct X509_crl_st X509_CRL;
00143 typedef struct X509_name_st X509_NAME;
00144 typedef struct x509_store_st X509_STORE;
00145 typedef struct x509_store_ctx_st X509_STORE_CTX;
00146 
00147 typedef struct v3_ext_ctx X509V3_CTX;
00148 typedef struct conf_st CONF;
00149 
00150 typedef struct store_st STORE;
00151 typedef struct store_method_st STORE_METHOD;
00152 
00153 typedef struct ui_st UI;
00154 typedef struct ui_method_st UI_METHOD;
00155 
00156 typedef struct st_ERR_FNS ERR_FNS;
00157 
00158 typedef struct engine_st ENGINE;
00159 
00160 typedef struct X509_POLICY_NODE_st X509_POLICY_NODE;
00161 typedef struct X509_POLICY_LEVEL_st X509_POLICY_LEVEL;
00162 typedef struct X509_POLICY_TREE_st X509_POLICY_TREE;
00163 typedef struct X509_POLICY_CACHE_st X509_POLICY_CACHE;
00164 
00165   /* If placed in pkcs12.h, we end up with a circular depency with pkcs7.h */
00166 #define DECLARE_PKCS12_STACK_OF(type) /* Nothing */
00167 #define IMPLEMENT_PKCS12_STACK_OF(type) /* Nothing */
00168 
00169 typedef struct crypto_ex_data_st CRYPTO_EX_DATA;
00170 /* Callback types for crypto.h */
00171 typedef int CRYPTO_EX_new(void *parent, void *ptr, CRYPTO_EX_DATA *ad,
00172                                         int idx, long argl, void *argp);
00173 typedef void CRYPTO_EX_free(void *parent, void *ptr, CRYPTO_EX_DATA *ad,
00174                                         int idx, long argl, void *argp);
00175 typedef int CRYPTO_EX_dup(CRYPTO_EX_DATA *to, CRYPTO_EX_DATA *from, void *from_d, 
00176                                         int idx, long argl, void *argp);
00177 
00178 #endif /* def HEADER_OPENSSL_TYPES_H */

Copyright © Nokia Corporation 2001-2008
Back to top