first step of v2 final release

This commit is contained in:
Zhi Guan
2017-11-05 21:00:36 +08:00
parent 480b9e8d88
commit 27bde477a5
395 changed files with 26341 additions and 31364 deletions

View File

@@ -15,6 +15,7 @@ void engine_load_rdrand_int(void);
void engine_load_dynamic_int(void);
void engine_load_padlock_int(void);
void engine_load_capi_int(void);
void engine_load_skf_int(void);
void engine_load_dasync_int(void);
void engine_load_afalg_int(void);
void engine_cleanup_int(void);

View File

@@ -27,10 +27,6 @@ struct evp_pkey_ctx_st {
/* implementation specific keygen data */
int *keygen_info;
int keygen_info_count;
#ifndef OPENSSL_NO_SM2
unsigned char *pre_update;
size_t pre_update_len;
#endif
} /* EVP_PKEY_CTX */ ;
#define EVP_PKEY_FLAG_DYNAMIC 1

View File

@@ -89,7 +89,7 @@ struct X509_crl_st {
ASN1_INTEGER *base_crl_number;
STACK_OF(GENERAL_NAMES) *issuers;
/* hash of CRL */
unsigned char sha1_hash[SHA_DIGEST_LENGTH];
unsigned char sha1_hash[32 /*SHA_DIGEST_LENGTH*/];
/* alternative method to handle this CRL */
const X509_CRL_METHOD *meth;
void *meth_data;
@@ -163,7 +163,7 @@ struct x509_st {
STACK_OF(IPAddressFamily) *rfc3779_addr;
struct ASIdentifiers_st *rfc3779_asid;
# endif
unsigned char sha1_hash[SHA_DIGEST_LENGTH];
unsigned char sha1_hash[32 /*SHA_DIGEST_LENGTH*/];
X509_CERT_AUX *aux;
CRYPTO_RWLOCK *lock;
} /* X509 */ ;