Index: openssl/crypto/ossl_typ.h |
=================================================================== |
--- openssl/crypto/ossl_typ.h (revision 105093) |
+++ openssl/crypto/ossl_typ.h (working copy) |
@@ -95,6 +95,8 @@ |
typedef int ASN1_NULL; |
#endif |
+typedef struct asn1_pctx_st ASN1_PCTX; |
+ |
#ifdef OPENSSL_SYS_WIN32 |
#undef X509_NAME |
#undef X509_EXTENSIONS |
@@ -122,6 +124,11 @@ |
typedef struct env_md_ctx_st EVP_MD_CTX; |
typedef struct evp_pkey_st EVP_PKEY; |
+typedef struct evp_pkey_asn1_method_st EVP_PKEY_ASN1_METHOD; |
+ |
+typedef struct evp_pkey_method_st EVP_PKEY_METHOD; |
+typedef struct evp_pkey_ctx_st EVP_PKEY_CTX; |
+ |
typedef struct dh_st DH; |
typedef struct dh_method DH_METHOD; |
@@ -139,12 +146,15 @@ |
typedef struct x509_st X509; |
typedef struct X509_algor_st X509_ALGOR; |
typedef struct X509_crl_st X509_CRL; |
+typedef struct x509_crl_method_st X509_CRL_METHOD; |
+typedef struct x509_revoked_st X509_REVOKED; |
typedef struct X509_name_st X509_NAME; |
+typedef struct X509_pubkey_st X509_PUBKEY; |
typedef struct x509_store_st X509_STORE; |
typedef struct x509_store_ctx_st X509_STORE_CTX; |
-typedef struct ssl_st SSL; |
-typedef struct ssl_ctx_st SSL_CTX; |
+typedef struct pkcs8_priv_key_info_st PKCS8_PRIV_KEY_INFO; |
+ |
typedef struct v3_ext_ctx X509V3_CTX; |
typedef struct conf_st CONF; |
@@ -157,12 +167,19 @@ |
typedef struct st_ERR_FNS ERR_FNS; |
typedef struct engine_st ENGINE; |
+typedef struct ssl_st SSL; |
+typedef struct ssl_ctx_st SSL_CTX; |
typedef struct X509_POLICY_NODE_st X509_POLICY_NODE; |
typedef struct X509_POLICY_LEVEL_st X509_POLICY_LEVEL; |
typedef struct X509_POLICY_TREE_st X509_POLICY_TREE; |
typedef struct X509_POLICY_CACHE_st X509_POLICY_CACHE; |
+typedef struct AUTHORITY_KEYID_st AUTHORITY_KEYID; |
+typedef struct DIST_POINT_st DIST_POINT; |
+typedef struct ISSUING_DIST_POINT_st ISSUING_DIST_POINT; |
+typedef struct NAME_CONSTRAINTS_st NAME_CONSTRAINTS; |
+ |
/* If placed in pkcs12.h, we end up with a circular depency with pkcs7.h */ |
#define DECLARE_PKCS12_STACK_OF(type) /* Nothing */ |
#define IMPLEMENT_PKCS12_STACK_OF(type) /* Nothing */ |