Make more use of OSSL_PARAM for ciphers
[openssl.git] / include / openssl / ossl_typ.h
1 /*
2  * Copyright 2001-2018 The OpenSSL Project Authors. All Rights Reserved.
3  *
4  * Licensed under the Apache License 2.0 (the "License").  You may not use
5  * this file except in compliance with the License.  You can obtain a copy
6  * in the file LICENSE in the source distribution or at
7  * https://www.openssl.org/source/license.html
8  */
9
10 #ifndef HEADER_OPENSSL_TYPES_H
11 # define HEADER_OPENSSL_TYPES_H
12
13 #include <limits.h>
14
15 #ifdef  __cplusplus
16 extern "C" {
17 #endif
18
19 # include <openssl/e_os2.h>
20
21 typedef struct ossl_provider_st OSSL_PROVIDER; /* Provider Object */
22
23 # ifdef NO_ASN1_TYPEDEFS
24 #  define ASN1_INTEGER            ASN1_STRING
25 #  define ASN1_ENUMERATED         ASN1_STRING
26 #  define ASN1_BIT_STRING         ASN1_STRING
27 #  define ASN1_OCTET_STRING       ASN1_STRING
28 #  define ASN1_PRINTABLESTRING    ASN1_STRING
29 #  define ASN1_T61STRING          ASN1_STRING
30 #  define ASN1_IA5STRING          ASN1_STRING
31 #  define ASN1_UTCTIME            ASN1_STRING
32 #  define ASN1_GENERALIZEDTIME    ASN1_STRING
33 #  define ASN1_TIME               ASN1_STRING
34 #  define ASN1_GENERALSTRING      ASN1_STRING
35 #  define ASN1_UNIVERSALSTRING    ASN1_STRING
36 #  define ASN1_BMPSTRING          ASN1_STRING
37 #  define ASN1_VISIBLESTRING      ASN1_STRING
38 #  define ASN1_UTF8STRING         ASN1_STRING
39 #  define ASN1_BOOLEAN            int
40 #  define ASN1_NULL               int
41 # else
42 typedef struct asn1_string_st ASN1_INTEGER;
43 typedef struct asn1_string_st ASN1_ENUMERATED;
44 typedef struct asn1_string_st ASN1_BIT_STRING;
45 typedef struct asn1_string_st ASN1_OCTET_STRING;
46 typedef struct asn1_string_st ASN1_PRINTABLESTRING;
47 typedef struct asn1_string_st ASN1_T61STRING;
48 typedef struct asn1_string_st ASN1_IA5STRING;
49 typedef struct asn1_string_st ASN1_GENERALSTRING;
50 typedef struct asn1_string_st ASN1_UNIVERSALSTRING;
51 typedef struct asn1_string_st ASN1_BMPSTRING;
52 typedef struct asn1_string_st ASN1_UTCTIME;
53 typedef struct asn1_string_st ASN1_TIME;
54 typedef struct asn1_string_st ASN1_GENERALIZEDTIME;
55 typedef struct asn1_string_st ASN1_VISIBLESTRING;
56 typedef struct asn1_string_st ASN1_UTF8STRING;
57 typedef struct asn1_string_st ASN1_STRING;
58 typedef int ASN1_BOOLEAN;
59 typedef int ASN1_NULL;
60 # endif
61
62 typedef struct asn1_object_st ASN1_OBJECT;
63
64 typedef struct ASN1_ITEM_st ASN1_ITEM;
65 typedef struct asn1_pctx_st ASN1_PCTX;
66 typedef struct asn1_sctx_st ASN1_SCTX;
67
68 # ifdef _WIN32
69 #  undef X509_NAME
70 #  undef X509_EXTENSIONS
71 #  undef PKCS7_ISSUER_AND_SERIAL
72 #  undef PKCS7_SIGNER_INFO
73 #  undef OCSP_REQUEST
74 #  undef OCSP_RESPONSE
75 # endif
76
77 # ifdef BIGNUM
78 #  undef BIGNUM
79 # endif
80 struct dane_st;
81 typedef struct bio_st BIO;
82 typedef struct bignum_st BIGNUM;
83 typedef struct bignum_ctx BN_CTX;
84 typedef struct bn_blinding_st BN_BLINDING;
85 typedef struct bn_mont_ctx_st BN_MONT_CTX;
86 typedef struct bn_recp_ctx_st BN_RECP_CTX;
87 typedef struct bn_gencb_st BN_GENCB;
88
89 typedef struct buf_mem_st BUF_MEM;
90
91 typedef struct evp_cipher_st EVP_CIPHER;
92 typedef struct evp_cipher_ctx_st EVP_CIPHER_CTX;
93 typedef struct evp_md_st EVP_MD;
94 typedef struct evp_md_ctx_st EVP_MD_CTX;
95 typedef struct evp_mac_st EVP_MAC;
96 typedef struct evp_mac_ctx_st EVP_MAC_CTX;
97 typedef struct evp_pkey_st EVP_PKEY;
98
99 typedef struct evp_pkey_asn1_method_st EVP_PKEY_ASN1_METHOD;
100
101 typedef struct evp_pkey_method_st EVP_PKEY_METHOD;
102 typedef struct evp_pkey_ctx_st EVP_PKEY_CTX;
103
104 typedef struct evp_kdf_st EVP_KDF;
105 typedef struct evp_kdf_ctx_st EVP_KDF_CTX;
106
107 typedef struct evp_Encode_Ctx_st EVP_ENCODE_CTX;
108
109 typedef struct hmac_ctx_st HMAC_CTX;
110
111 typedef struct dh_st DH;
112 typedef struct dh_method DH_METHOD;
113
114 typedef struct dsa_st DSA;
115 typedef struct dsa_method DSA_METHOD;
116
117 typedef struct rsa_st RSA;
118 typedef struct rsa_meth_st RSA_METHOD;
119
120 typedef struct ec_key_st EC_KEY;
121 typedef struct ec_key_method_st EC_KEY_METHOD;
122
123 typedef struct rand_meth_st RAND_METHOD;
124 typedef struct rand_drbg_st RAND_DRBG;
125
126 typedef struct ssl_dane_st SSL_DANE;
127 typedef struct x509_st X509;
128 typedef struct X509_algor_st X509_ALGOR;
129 typedef struct X509_crl_st X509_CRL;
130 typedef struct x509_crl_method_st X509_CRL_METHOD;
131 typedef struct x509_revoked_st X509_REVOKED;
132 typedef struct X509_name_st X509_NAME;
133 typedef struct X509_pubkey_st X509_PUBKEY;
134 typedef struct x509_store_st X509_STORE;
135 typedef struct x509_store_ctx_st X509_STORE_CTX;
136
137 typedef struct x509_object_st X509_OBJECT;
138 typedef struct x509_lookup_st X509_LOOKUP;
139 typedef struct x509_lookup_method_st X509_LOOKUP_METHOD;
140 typedef struct X509_VERIFY_PARAM_st X509_VERIFY_PARAM;
141
142 typedef struct x509_sig_info_st X509_SIG_INFO;
143
144 typedef struct pkcs8_priv_key_info_st PKCS8_PRIV_KEY_INFO;
145
146 typedef struct v3_ext_ctx X509V3_CTX;
147 typedef struct conf_st CONF;
148 typedef struct ossl_init_settings_st OPENSSL_INIT_SETTINGS;
149
150 typedef struct ui_st UI;
151 typedef struct ui_method_st UI_METHOD;
152
153 typedef struct engine_st ENGINE;
154 typedef struct ssl_st SSL;
155 typedef struct ssl_ctx_st SSL_CTX;
156
157 typedef struct comp_ctx_st COMP_CTX;
158 typedef struct comp_method_st COMP_METHOD;
159
160 typedef struct X509_POLICY_NODE_st X509_POLICY_NODE;
161 typedef struct X509_POLICY_LEVEL_st X509_POLICY_LEVEL;
162 typedef struct X509_POLICY_TREE_st X509_POLICY_TREE;
163 typedef struct X509_POLICY_CACHE_st X509_POLICY_CACHE;
164
165 typedef struct AUTHORITY_KEYID_st AUTHORITY_KEYID;
166 typedef struct DIST_POINT_st DIST_POINT;
167 typedef struct ISSUING_DIST_POINT_st ISSUING_DIST_POINT;
168 typedef struct NAME_CONSTRAINTS_st NAME_CONSTRAINTS;
169
170 typedef struct crypto_ex_data_st CRYPTO_EX_DATA;
171
172 typedef struct ocsp_req_ctx_st OCSP_REQ_CTX;
173 typedef struct ocsp_response_st OCSP_RESPONSE;
174 typedef struct ocsp_responder_id_st OCSP_RESPID;
175
176 typedef struct sct_st SCT;
177 typedef struct sct_ctx_st SCT_CTX;
178 typedef struct ctlog_st CTLOG;
179 typedef struct ctlog_store_st CTLOG_STORE;
180 typedef struct ct_policy_eval_ctx_st CT_POLICY_EVAL_CTX;
181
182 typedef struct ossl_store_info_st OSSL_STORE_INFO;
183 typedef struct ossl_store_search_st OSSL_STORE_SEARCH;
184
185 typedef struct openssl_ctx_st OPENSSL_CTX;
186
187 typedef struct ossl_dispatch_st OSSL_DISPATCH;
188 typedef struct ossl_item_st OSSL_ITEM;
189 typedef struct ossl_algorithm_st OSSL_ALGORITHM;
190 typedef struct ossl_param_st OSSL_PARAM;
191
192 #if defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L && \
193     defined(INTMAX_MAX) && defined(UINTMAX_MAX)
194 typedef intmax_t ossl_intmax_t;
195 typedef uintmax_t ossl_uintmax_t;
196 #else
197 /*
198  * Not long long, because the C-library can only be expected to provide
199  * strtoll(), strtoull() at the same time as intmax_t and strtoimax(),
200  * strtoumax().  Since we use these for parsing arguments, we need the
201  * conversion functions, not just the sizes.
202  */
203 typedef long ossl_intmax_t;
204 typedef unsigned long ossl_uintmax_t;
205 #endif
206
207 #ifdef  __cplusplus
208 }
209 #endif
210 #endif                          /* def HEADER_OPENSSL_TYPES_H */