mirror of
https://github.com/guanzhi/GmSSL.git
synced 2026-05-18 22:36:25 +08:00
first step of v2 final release
This commit is contained in:
@@ -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);
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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 */ ;
|
||||
|
||||
Reference in New Issue
Block a user