summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/ossl_typ.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/libcrypto/ossl_typ.h')
-rw-r--r--src/lib/libcrypto/ossl_typ.h21
1 files changed, 19 insertions, 2 deletions
diff --git a/src/lib/libcrypto/ossl_typ.h b/src/lib/libcrypto/ossl_typ.h
index 0e7a380880..12bd7014de 100644
--- a/src/lib/libcrypto/ossl_typ.h
+++ b/src/lib/libcrypto/ossl_typ.h
@@ -95,6 +95,8 @@ typedef int ASN1_BOOLEAN;
95typedef int ASN1_NULL; 95typedef int ASN1_NULL;
96#endif 96#endif
97 97
98typedef struct asn1_pctx_st ASN1_PCTX;
99
98#ifdef OPENSSL_SYS_WIN32 100#ifdef OPENSSL_SYS_WIN32
99#undef X509_NAME 101#undef X509_NAME
100#undef X509_EXTENSIONS 102#undef X509_EXTENSIONS
@@ -122,6 +124,11 @@ typedef struct env_md_st EVP_MD;
122typedef struct env_md_ctx_st EVP_MD_CTX; 124typedef struct env_md_ctx_st EVP_MD_CTX;
123typedef struct evp_pkey_st EVP_PKEY; 125typedef struct evp_pkey_st EVP_PKEY;
124 126
127typedef struct evp_pkey_asn1_method_st EVP_PKEY_ASN1_METHOD;
128
129typedef struct evp_pkey_method_st EVP_PKEY_METHOD;
130typedef struct evp_pkey_ctx_st EVP_PKEY_CTX;
131
125typedef struct dh_st DH; 132typedef struct dh_st DH;
126typedef struct dh_method DH_METHOD; 133typedef struct dh_method DH_METHOD;
127 134
@@ -139,11 +146,14 @@ typedef struct ecdsa_method ECDSA_METHOD;
139typedef struct x509_st X509; 146typedef struct x509_st X509;
140typedef struct X509_algor_st X509_ALGOR; 147typedef struct X509_algor_st X509_ALGOR;
141typedef struct X509_crl_st X509_CRL; 148typedef struct X509_crl_st X509_CRL;
149typedef struct x509_crl_method_st X509_CRL_METHOD;
150typedef struct x509_revoked_st X509_REVOKED;
142typedef struct X509_name_st X509_NAME; 151typedef struct X509_name_st X509_NAME;
152typedef struct X509_pubkey_st X509_PUBKEY;
143typedef struct x509_store_st X509_STORE; 153typedef struct x509_store_st X509_STORE;
144typedef struct x509_store_ctx_st X509_STORE_CTX; 154typedef struct x509_store_ctx_st X509_STORE_CTX;
145typedef struct ssl_st SSL; 155
146typedef struct ssl_ctx_st SSL_CTX; 156typedef struct pkcs8_priv_key_info_st PKCS8_PRIV_KEY_INFO;
147 157
148typedef struct v3_ext_ctx X509V3_CTX; 158typedef struct v3_ext_ctx X509V3_CTX;
149typedef struct conf_st CONF; 159typedef struct conf_st CONF;
@@ -157,12 +167,19 @@ typedef struct ui_method_st UI_METHOD;
157typedef struct st_ERR_FNS ERR_FNS; 167typedef struct st_ERR_FNS ERR_FNS;
158 168
159typedef struct engine_st ENGINE; 169typedef struct engine_st ENGINE;
170typedef struct ssl_st SSL;
171typedef struct ssl_ctx_st SSL_CTX;
160 172
161typedef struct X509_POLICY_NODE_st X509_POLICY_NODE; 173typedef struct X509_POLICY_NODE_st X509_POLICY_NODE;
162typedef struct X509_POLICY_LEVEL_st X509_POLICY_LEVEL; 174typedef struct X509_POLICY_LEVEL_st X509_POLICY_LEVEL;
163typedef struct X509_POLICY_TREE_st X509_POLICY_TREE; 175typedef struct X509_POLICY_TREE_st X509_POLICY_TREE;
164typedef struct X509_POLICY_CACHE_st X509_POLICY_CACHE; 176typedef struct X509_POLICY_CACHE_st X509_POLICY_CACHE;
165 177
178typedef struct AUTHORITY_KEYID_st AUTHORITY_KEYID;
179typedef struct DIST_POINT_st DIST_POINT;
180typedef struct ISSUING_DIST_POINT_st ISSUING_DIST_POINT;
181typedef struct NAME_CONSTRAINTS_st NAME_CONSTRAINTS;
182
166 /* If placed in pkcs12.h, we end up with a circular depency with pkcs7.h */ 183 /* If placed in pkcs12.h, we end up with a circular depency with pkcs7.h */
167#define DECLARE_PKCS12_STACK_OF(type) /* Nothing */ 184#define DECLARE_PKCS12_STACK_OF(type) /* Nothing */
168#define IMPLEMENT_PKCS12_STACK_OF(type) /* Nothing */ 185#define IMPLEMENT_PKCS12_STACK_OF(type) /* Nothing */