OSDN Git Service

f61c8f8cc39a044e74f6001a506ac1e91e3cf705
[ffftp/ffftp.git] / contrib / openssl / include / openssl / ossl_typ.h
1 /* ====================================================================\r
2  * Copyright (c) 1998-2001 The OpenSSL Project.  All rights reserved.\r
3  *\r
4  * Redistribution and use in source and binary forms, with or without\r
5  * modification, are permitted provided that the following conditions\r
6  * are met:\r
7  *\r
8  * 1. Redistributions of source code must retain the above copyright\r
9  *    notice, this list of conditions and the following disclaimer.\r
10  *\r
11  * 2. Redistributions in binary form must reproduce the above copyright\r
12  *    notice, this list of conditions and the following disclaimer in\r
13  *    the documentation and/or other materials provided with the\r
14  *    distribution.\r
15  *\r
16  * 3. All advertising materials mentioning features or use of this\r
17  *    software must display the following acknowledgment:\r
18  *    "This product includes software developed by the OpenSSL Project\r
19  *    for use in the OpenSSL Toolkit. (http://www.openssl.org/)"\r
20  *\r
21  * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to\r
22  *    endorse or promote products derived from this software without\r
23  *    prior written permission. For written permission, please contact\r
24  *    openssl-core@openssl.org.\r
25  *\r
26  * 5. Products derived from this software may not be called "OpenSSL"\r
27  *    nor may "OpenSSL" appear in their names without prior written\r
28  *    permission of the OpenSSL Project.\r
29  *\r
30  * 6. Redistributions of any form whatsoever must retain the following\r
31  *    acknowledgment:\r
32  *    "This product includes software developed by the OpenSSL Project\r
33  *    for use in the OpenSSL Toolkit (http://www.openssl.org/)"\r
34  *\r
35  * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY\r
36  * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\r
37  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\r
38  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE OpenSSL PROJECT OR\r
39  * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\r
40  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT\r
41  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\r
42  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\r
43  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,\r
44  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\r
45  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED\r
46  * OF THE POSSIBILITY OF SUCH DAMAGE.\r
47  * ====================================================================\r
48  *\r
49  * This product includes cryptographic software written by Eric Young\r
50  * (eay@cryptsoft.com).  This product includes software written by Tim\r
51  * Hudson (tjh@cryptsoft.com).\r
52  *\r
53  */\r
54 \r
55 #ifndef HEADER_OPENSSL_TYPES_H\r
56 #define HEADER_OPENSSL_TYPES_H\r
57 \r
58 #include <openssl/e_os2.h>\r
59 \r
60 #ifdef NO_ASN1_TYPEDEFS\r
61 #define ASN1_INTEGER            ASN1_STRING\r
62 #define ASN1_ENUMERATED         ASN1_STRING\r
63 #define ASN1_BIT_STRING         ASN1_STRING\r
64 #define ASN1_OCTET_STRING       ASN1_STRING\r
65 #define ASN1_PRINTABLESTRING    ASN1_STRING\r
66 #define ASN1_T61STRING          ASN1_STRING\r
67 #define ASN1_IA5STRING          ASN1_STRING\r
68 #define ASN1_UTCTIME            ASN1_STRING\r
69 #define ASN1_GENERALIZEDTIME    ASN1_STRING\r
70 #define ASN1_TIME               ASN1_STRING\r
71 #define ASN1_GENERALSTRING      ASN1_STRING\r
72 #define ASN1_UNIVERSALSTRING    ASN1_STRING\r
73 #define ASN1_BMPSTRING          ASN1_STRING\r
74 #define ASN1_VISIBLESTRING      ASN1_STRING\r
75 #define ASN1_UTF8STRING         ASN1_STRING\r
76 #define ASN1_BOOLEAN            int\r
77 #define ASN1_NULL               int\r
78 #else\r
79 typedef struct asn1_string_st ASN1_INTEGER;\r
80 typedef struct asn1_string_st ASN1_ENUMERATED;\r
81 typedef struct asn1_string_st ASN1_BIT_STRING;\r
82 typedef struct asn1_string_st ASN1_OCTET_STRING;\r
83 typedef struct asn1_string_st ASN1_PRINTABLESTRING;\r
84 typedef struct asn1_string_st ASN1_T61STRING;\r
85 typedef struct asn1_string_st ASN1_IA5STRING;\r
86 typedef struct asn1_string_st ASN1_GENERALSTRING;\r
87 typedef struct asn1_string_st ASN1_UNIVERSALSTRING;\r
88 typedef struct asn1_string_st ASN1_BMPSTRING;\r
89 typedef struct asn1_string_st ASN1_UTCTIME;\r
90 typedef struct asn1_string_st ASN1_TIME;\r
91 typedef struct asn1_string_st ASN1_GENERALIZEDTIME;\r
92 typedef struct asn1_string_st ASN1_VISIBLESTRING;\r
93 typedef struct asn1_string_st ASN1_UTF8STRING;\r
94 typedef int ASN1_BOOLEAN;\r
95 typedef int ASN1_NULL;\r
96 #endif\r
97 \r
98 typedef struct asn1_pctx_st ASN1_PCTX;\r
99 \r
100 #ifdef OPENSSL_SYS_WIN32\r
101 #undef X509_NAME\r
102 #undef X509_EXTENSIONS\r
103 #undef X509_CERT_PAIR\r
104 #undef PKCS7_ISSUER_AND_SERIAL\r
105 #undef OCSP_REQUEST\r
106 #undef OCSP_RESPONSE\r
107 #endif\r
108 \r
109 #ifdef BIGNUM\r
110 #undef BIGNUM\r
111 #endif\r
112 typedef struct bignum_st BIGNUM;\r
113 typedef struct bignum_ctx BN_CTX;\r
114 typedef struct bn_blinding_st BN_BLINDING;\r
115 typedef struct bn_mont_ctx_st BN_MONT_CTX;\r
116 typedef struct bn_recp_ctx_st BN_RECP_CTX;\r
117 typedef struct bn_gencb_st BN_GENCB;\r
118 \r
119 typedef struct buf_mem_st BUF_MEM;\r
120 \r
121 typedef struct evp_cipher_st EVP_CIPHER;\r
122 typedef struct evp_cipher_ctx_st EVP_CIPHER_CTX;\r
123 typedef struct env_md_st EVP_MD;\r
124 typedef struct env_md_ctx_st EVP_MD_CTX;\r
125 typedef struct evp_pkey_st EVP_PKEY;\r
126 \r
127 typedef struct evp_pkey_asn1_method_st EVP_PKEY_ASN1_METHOD;\r
128 \r
129 typedef struct evp_pkey_method_st EVP_PKEY_METHOD;\r
130 typedef struct evp_pkey_ctx_st EVP_PKEY_CTX;\r
131 \r
132 typedef struct dh_st DH;\r
133 typedef struct dh_method DH_METHOD;\r
134 \r
135 typedef struct dsa_st DSA;\r
136 typedef struct dsa_method DSA_METHOD;\r
137 \r
138 typedef struct rsa_st RSA;\r
139 typedef struct rsa_meth_st RSA_METHOD;\r
140 \r
141 typedef struct rand_meth_st RAND_METHOD;\r
142 \r
143 typedef struct ecdh_method ECDH_METHOD;\r
144 typedef struct ecdsa_method ECDSA_METHOD;\r
145 \r
146 typedef struct x509_st X509;\r
147 typedef struct X509_algor_st X509_ALGOR;\r
148 typedef struct X509_crl_st X509_CRL;\r
149 typedef struct x509_crl_method_st X509_CRL_METHOD;\r
150 typedef struct x509_revoked_st X509_REVOKED;\r
151 typedef struct X509_name_st X509_NAME;\r
152 typedef struct X509_pubkey_st X509_PUBKEY;\r
153 typedef struct x509_store_st X509_STORE;\r
154 typedef struct x509_store_ctx_st X509_STORE_CTX;\r
155 \r
156 typedef struct pkcs8_priv_key_info_st PKCS8_PRIV_KEY_INFO;\r
157 \r
158 typedef struct v3_ext_ctx X509V3_CTX;\r
159 typedef struct conf_st CONF;\r
160 \r
161 typedef struct store_st STORE;\r
162 typedef struct store_method_st STORE_METHOD;\r
163 \r
164 typedef struct ui_st UI;\r
165 typedef struct ui_method_st UI_METHOD;\r
166 \r
167 typedef struct st_ERR_FNS ERR_FNS;\r
168 \r
169 typedef struct engine_st ENGINE;\r
170 typedef struct ssl_st SSL;\r
171 typedef struct ssl_ctx_st SSL_CTX;\r
172 \r
173 typedef struct X509_POLICY_NODE_st X509_POLICY_NODE;\r
174 typedef struct X509_POLICY_LEVEL_st X509_POLICY_LEVEL;\r
175 typedef struct X509_POLICY_TREE_st X509_POLICY_TREE;\r
176 typedef struct X509_POLICY_CACHE_st X509_POLICY_CACHE;\r
177 \r
178 typedef struct AUTHORITY_KEYID_st AUTHORITY_KEYID;\r
179 typedef struct DIST_POINT_st DIST_POINT;\r
180 typedef struct ISSUING_DIST_POINT_st ISSUING_DIST_POINT;\r
181 typedef struct NAME_CONSTRAINTS_st NAME_CONSTRAINTS;\r
182 \r
183   /* If placed in pkcs12.h, we end up with a circular depency with pkcs7.h */\r
184 #define DECLARE_PKCS12_STACK_OF(type) /* Nothing */\r
185 #define IMPLEMENT_PKCS12_STACK_OF(type) /* Nothing */\r
186 \r
187 typedef struct crypto_ex_data_st CRYPTO_EX_DATA;\r
188 /* Callback types for crypto.h */\r
189 typedef int CRYPTO_EX_new(void *parent, void *ptr, CRYPTO_EX_DATA *ad,\r
190                                         int idx, long argl, void *argp);\r
191 typedef void CRYPTO_EX_free(void *parent, void *ptr, CRYPTO_EX_DATA *ad,\r
192                                         int idx, long argl, void *argp);\r
193 typedef int CRYPTO_EX_dup(CRYPTO_EX_DATA *to, CRYPTO_EX_DATA *from, void *from_d,\r
194                                         int idx, long argl, void *argp);\r
195 \r
196 typedef struct ocsp_req_ctx_st OCSP_REQ_CTX;\r
197 typedef struct ocsp_response_st OCSP_RESPONSE;\r
198 typedef struct ocsp_responder_id_st OCSP_RESPID;\r
199 \r
200 #endif /* def HEADER_OPENSSL_TYPES_H */\r