mirror of
https://github.com/zlib-ng/minizip-ng
synced 2025-03-28 21:13:18 +00:00
aligning definitions
This commit is contained in:
parent
ca87aae0bd
commit
42c63e60ad
@ -269,8 +269,8 @@ void mz_crypt_sha_delete(void **handle) {
|
||||
/***************************************************************************/
|
||||
|
||||
typedef struct mz_crypt_aes_s {
|
||||
int32_t mode;
|
||||
unsigned long error;
|
||||
int32_t mode;
|
||||
unsigned long error;
|
||||
EVP_CIPHER_CTX *ctx;
|
||||
} mz_crypt_aes;
|
||||
|
||||
@ -488,14 +488,14 @@ void mz_crypt_aes_delete(void **handle) {
|
||||
|
||||
typedef struct mz_crypt_hmac_s {
|
||||
#if OPENSSL_VERSION_NUMBER < 0x30000000L
|
||||
HMAC_CTX *ctx;
|
||||
HMAC_CTX *ctx;
|
||||
#else
|
||||
EVP_MAC *mac;
|
||||
EVP_MAC_CTX *ctx;
|
||||
EVP_MAC *mac;
|
||||
EVP_MAC_CTX *ctx;
|
||||
#endif
|
||||
int32_t initialized;
|
||||
unsigned long error;
|
||||
uint16_t algorithm;
|
||||
int32_t initialized;
|
||||
unsigned long error;
|
||||
uint16_t algorithm;
|
||||
} mz_crypt_hmac;
|
||||
|
||||
/***************************************************************************/
|
||||
|
Loading…
x
Reference in New Issue
Block a user