2018-10-25 23:25:01 -07:00
|
|
|
/* mz_strm_wzaes.c -- Stream for WinZip AES encryption
|
2018-10-28 16:47:53 -07:00
|
|
|
Version 2.7.0, October 28, 2018
|
2017-10-05 07:34:59 -07:00
|
|
|
part of the MiniZip project
|
2017-10-01 21:12:12 -07:00
|
|
|
|
2018-01-06 08:49:03 -08:00
|
|
|
Copyright (C) 2010-2018 Nathan Moinvaziri
|
2017-10-01 22:42:35 -07:00
|
|
|
https://github.com/nmoinvaz/minizip
|
2017-11-15 21:55:59 -08:00
|
|
|
Copyright (C) 1998-2010 Brian Gladman, Worcester, UK
|
2017-10-01 21:12:12 -07:00
|
|
|
|
2017-10-01 22:42:35 -07:00
|
|
|
This program is distributed under the terms of the same license as zlib.
|
|
|
|
See the accompanying LICENSE file for the full text of the license.
|
2017-10-01 21:12:12 -07:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
2017-10-16 07:37:11 -07:00
|
|
|
#include "mz.h"
|
2018-10-24 18:06:08 -07:00
|
|
|
#include "mz_crypt.h"
|
2017-10-05 23:32:57 -07:00
|
|
|
#include "mz_os.h"
|
2017-10-04 22:10:11 -07:00
|
|
|
#include "mz_strm.h"
|
2018-10-24 09:23:14 -07:00
|
|
|
#include "mz_strm_wzaes.h"
|
2017-10-01 21:12:12 -07:00
|
|
|
|
2017-10-03 21:56:07 -07:00
|
|
|
/***************************************************************************/
|
|
|
|
|
2017-11-15 21:55:59 -08:00
|
|
|
#define MZ_AES_KEYING_ITERATIONS (1000)
|
2018-11-01 10:32:42 -07:00
|
|
|
#define MZ_AES_SALT_LENGTH(MODE) (4 * (MODE & 3) + 4)
|
2017-11-15 21:55:59 -08:00
|
|
|
#define MZ_AES_SALT_LENGTH_MAX (16)
|
|
|
|
#define MZ_AES_PW_LENGTH_MAX (128)
|
|
|
|
#define MZ_AES_PW_VERIFY_SIZE (2)
|
|
|
|
#define MZ_AES_AUTHCODE_SIZE (10)
|
2017-10-01 21:12:12 -07:00
|
|
|
|
2017-10-03 21:56:07 -07:00
|
|
|
/***************************************************************************/
|
|
|
|
|
2018-10-24 09:23:14 -07:00
|
|
|
static mz_stream_vtbl mz_stream_wzaes_vtbl = {
|
|
|
|
mz_stream_wzaes_open,
|
|
|
|
mz_stream_wzaes_is_open,
|
|
|
|
mz_stream_wzaes_read,
|
|
|
|
mz_stream_wzaes_write,
|
|
|
|
mz_stream_wzaes_tell,
|
|
|
|
mz_stream_wzaes_seek,
|
|
|
|
mz_stream_wzaes_close,
|
|
|
|
mz_stream_wzaes_error,
|
|
|
|
mz_stream_wzaes_create,
|
|
|
|
mz_stream_wzaes_delete,
|
|
|
|
mz_stream_wzaes_get_prop_int64,
|
|
|
|
mz_stream_wzaes_set_prop_int64
|
2017-10-08 21:48:28 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
/***************************************************************************/
|
|
|
|
|
2018-10-24 09:23:14 -07:00
|
|
|
typedef struct mz_stream_wzaes_s {
|
2017-11-15 21:55:59 -08:00
|
|
|
mz_stream stream;
|
|
|
|
int32_t mode;
|
|
|
|
int32_t error;
|
|
|
|
int16_t initialized;
|
2018-10-26 20:00:52 -07:00
|
|
|
uint8_t buffer[UINT16_MAX];
|
2017-11-15 21:55:59 -08:00
|
|
|
int64_t total_in;
|
2018-07-09 07:53:17 -07:00
|
|
|
int64_t max_total_in;
|
2017-11-15 21:55:59 -08:00
|
|
|
int64_t total_out;
|
|
|
|
int16_t encryption_mode;
|
|
|
|
const char *password;
|
2018-10-24 18:06:08 -07:00
|
|
|
void *aes;
|
|
|
|
uint32_t crypt_pos;
|
2018-10-25 23:25:01 -07:00
|
|
|
uint8_t crypt_block[MZ_AES_BLOCK_SIZE];
|
2018-10-24 18:06:08 -07:00
|
|
|
void *hmac;
|
2018-10-25 23:25:01 -07:00
|
|
|
uint8_t nonce[MZ_AES_BLOCK_SIZE];
|
2018-10-24 09:23:14 -07:00
|
|
|
} mz_stream_wzaes;
|
2017-10-01 21:12:12 -07:00
|
|
|
|
2017-10-03 21:56:07 -07:00
|
|
|
/***************************************************************************/
|
|
|
|
|
2018-10-24 18:06:08 -07:00
|
|
|
int32_t mz_stream_wzaes_pbkdf2(uint8_t *password, int32_t password_length, uint8_t *salt,
|
|
|
|
int32_t salt_length, int32_t iteration_count, uint8_t *key, int32_t key_length)
|
|
|
|
{
|
|
|
|
void *hmac1 = NULL;
|
|
|
|
void *hmac2 = NULL;
|
|
|
|
void *hmac3 = NULL;
|
|
|
|
int32_t err = MZ_OK;
|
|
|
|
uint16_t i = 0;
|
|
|
|
uint16_t j = 0;
|
|
|
|
uint16_t k = 0;
|
|
|
|
uint16_t block_count = 0;
|
|
|
|
uint8_t uu[MZ_HASH_SHA1_SIZE];
|
|
|
|
uint8_t ux[MZ_HASH_SHA1_SIZE];
|
|
|
|
|
|
|
|
if (password == NULL || salt == NULL || key == NULL)
|
|
|
|
return MZ_PARAM_ERROR;
|
|
|
|
|
|
|
|
memset(key, 0, key_length);
|
|
|
|
|
|
|
|
mz_crypt_hmac_create(&hmac1);
|
|
|
|
mz_crypt_hmac_create(&hmac2);
|
|
|
|
mz_crypt_hmac_create(&hmac3);
|
|
|
|
|
|
|
|
mz_crypt_hmac_set_algorithm(hmac1, MZ_HASH_SHA1);
|
|
|
|
mz_crypt_hmac_set_algorithm(hmac2, MZ_HASH_SHA1);
|
|
|
|
mz_crypt_hmac_set_algorithm(hmac3, MZ_HASH_SHA1);
|
|
|
|
|
2018-10-31 18:25:53 -07:00
|
|
|
err = mz_crypt_hmac_init(hmac1, password, password_length);
|
|
|
|
err = mz_crypt_hmac_init(hmac2, password, password_length);
|
2018-10-24 18:06:08 -07:00
|
|
|
if (err == MZ_OK)
|
|
|
|
err = mz_crypt_hmac_update(hmac2, salt, salt_length);
|
|
|
|
|
|
|
|
block_count = 1 + ((uint16_t)key_length - 1) / MZ_HASH_SHA1_SIZE;
|
|
|
|
|
|
|
|
for (i = 0; (err == MZ_OK) && (i < block_count); i += 1)
|
|
|
|
{
|
|
|
|
memset(ux, 0, sizeof(ux));
|
|
|
|
|
|
|
|
err = mz_crypt_hmac_copy(hmac2, hmac3);
|
|
|
|
if (err != MZ_OK)
|
|
|
|
break;
|
|
|
|
|
|
|
|
uu[0] = (uint8_t)((i + 1) >> 24);
|
|
|
|
uu[1] = (uint8_t)((i + 1) >> 16);
|
|
|
|
uu[2] = (uint8_t)((i + 1) >> 8);
|
|
|
|
uu[3] = (uint8_t)(i + 1);
|
|
|
|
|
|
|
|
for (j = 0, k = 4; j < iteration_count; j += 1)
|
|
|
|
{
|
|
|
|
err = mz_crypt_hmac_update(hmac3, uu, k);
|
|
|
|
err = mz_crypt_hmac_end(hmac3, uu, sizeof(uu));
|
|
|
|
|
|
|
|
for(k = 0; k < MZ_HASH_SHA1_SIZE; k += 1)
|
|
|
|
ux[k] ^= uu[k];
|
|
|
|
|
|
|
|
err = mz_crypt_hmac_copy(hmac1, hmac3);
|
|
|
|
if (err != MZ_OK)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (err != MZ_OK)
|
|
|
|
break;
|
|
|
|
|
|
|
|
j = 0;
|
|
|
|
k = i * MZ_HASH_SHA1_SIZE;
|
|
|
|
|
|
|
|
while (j < MZ_HASH_SHA1_SIZE && k < key_length)
|
|
|
|
key[k++] = ux[j++];
|
|
|
|
}
|
|
|
|
|
|
|
|
mz_crypt_hmac_delete(&hmac1);
|
|
|
|
mz_crypt_hmac_delete(&hmac2);
|
|
|
|
mz_crypt_hmac_delete(&hmac3);
|
|
|
|
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
|
|
|
/***************************************************************************/
|
|
|
|
|
2018-10-24 09:23:14 -07:00
|
|
|
int32_t mz_stream_wzaes_open(void *stream, const char *path, int32_t mode)
|
2017-10-01 21:12:12 -07:00
|
|
|
{
|
2018-10-24 18:06:08 -07:00
|
|
|
mz_stream_wzaes *wzaes = (mz_stream_wzaes *)stream;
|
2018-10-08 22:40:38 -07:00
|
|
|
uint16_t salt_length = 0;
|
|
|
|
uint16_t password_length = 0;
|
|
|
|
uint16_t key_length = 0;
|
2017-11-15 21:55:59 -08:00
|
|
|
uint8_t kbuf[2 * MZ_AES_KEY_LENGTH_MAX + MZ_AES_PW_VERIFY_SIZE];
|
|
|
|
uint8_t verify[MZ_AES_PW_VERIFY_SIZE];
|
|
|
|
uint8_t verify_expected[MZ_AES_PW_VERIFY_SIZE];
|
|
|
|
uint8_t salt_value[MZ_AES_SALT_LENGTH_MAX];
|
2017-10-02 22:11:03 -07:00
|
|
|
const char *password = path;
|
2017-10-01 21:12:12 -07:00
|
|
|
|
2018-10-24 18:06:08 -07:00
|
|
|
wzaes->total_in = 0;
|
|
|
|
wzaes->total_out = 0;
|
|
|
|
wzaes->initialized = 0;
|
2017-10-01 21:12:12 -07:00
|
|
|
|
2018-10-24 18:06:08 -07:00
|
|
|
if (mz_stream_is_open(wzaes->stream.base) != MZ_OK)
|
2018-10-28 16:15:13 -07:00
|
|
|
return MZ_OPEN_ERROR;
|
2017-11-15 21:55:59 -08:00
|
|
|
|
2017-10-02 22:11:03 -07:00
|
|
|
if (password == NULL)
|
2018-10-24 18:06:08 -07:00
|
|
|
password = wzaes->password;
|
2017-10-02 22:11:03 -07:00
|
|
|
if (password == NULL)
|
2017-11-15 21:55:59 -08:00
|
|
|
return MZ_PARAM_ERROR;
|
2018-10-08 22:40:38 -07:00
|
|
|
password_length = (uint16_t)strlen(password);
|
2017-11-15 21:55:59 -08:00
|
|
|
if (password_length > MZ_AES_PW_LENGTH_MAX)
|
|
|
|
return MZ_PARAM_ERROR;
|
2017-10-01 21:12:12 -07:00
|
|
|
|
2018-10-24 18:06:08 -07:00
|
|
|
if (wzaes->encryption_mode < 1 || wzaes->encryption_mode > 3)
|
2017-11-15 21:55:59 -08:00
|
|
|
return MZ_PARAM_ERROR;
|
2018-10-24 18:06:08 -07:00
|
|
|
|
|
|
|
salt_length = MZ_AES_SALT_LENGTH(wzaes->encryption_mode);
|
2017-10-01 21:12:12 -07:00
|
|
|
|
2017-10-23 17:22:36 -07:00
|
|
|
if (mode & MZ_OPEN_MODE_WRITE)
|
2017-10-01 21:12:12 -07:00
|
|
|
{
|
2018-07-22 10:35:49 -07:00
|
|
|
#ifdef MZ_ZIP_NO_COMPRESSION
|
2018-07-22 10:18:53 -07:00
|
|
|
return MZ_SUPPORT_ERROR;
|
|
|
|
#else
|
2018-10-24 18:06:08 -07:00
|
|
|
mz_crypt_rand(salt_value, salt_length);
|
2018-07-22 10:18:53 -07:00
|
|
|
#endif
|
2017-11-15 21:55:59 -08:00
|
|
|
}
|
|
|
|
else if (mode & MZ_OPEN_MODE_READ)
|
|
|
|
{
|
2018-07-22 10:35:49 -07:00
|
|
|
#ifdef MZ_ZIP_NO_DECOMPRESSION
|
2018-07-22 10:18:53 -07:00
|
|
|
return MZ_SUPPORT_ERROR;
|
|
|
|
#else
|
2018-10-24 18:06:08 -07:00
|
|
|
if (mz_stream_read(wzaes->stream.base, salt_value, salt_length) != salt_length)
|
2018-10-28 16:15:13 -07:00
|
|
|
return MZ_READ_ERROR;
|
2018-07-22 10:18:53 -07:00
|
|
|
#endif
|
2017-11-15 21:55:59 -08:00
|
|
|
}
|
|
|
|
|
2018-10-24 18:06:08 -07:00
|
|
|
key_length = MZ_AES_KEY_LENGTH(wzaes->encryption_mode);
|
|
|
|
|
2017-11-15 21:55:59 -08:00
|
|
|
// Derive the encryption and authentication keys and the password verifier
|
2018-10-24 18:06:08 -07:00
|
|
|
mz_stream_wzaes_pbkdf2((uint8_t *)password, password_length, salt_value, salt_length,
|
2017-11-15 21:55:59 -08:00
|
|
|
MZ_AES_KEYING_ITERATIONS, kbuf, 2 * key_length + MZ_AES_PW_VERIFY_SIZE);
|
|
|
|
|
|
|
|
// Initialize the encryption nonce and buffer pos
|
2018-10-25 23:25:01 -07:00
|
|
|
wzaes->crypt_pos = MZ_AES_BLOCK_SIZE;
|
2018-10-24 18:06:08 -07:00
|
|
|
memset(wzaes->nonce, 0, sizeof(wzaes->nonce));
|
2017-11-15 21:55:59 -08:00
|
|
|
|
|
|
|
// Initialize for encryption using key 1
|
2018-10-24 18:06:08 -07:00
|
|
|
mz_crypt_aes_reset(wzaes->aes);
|
|
|
|
mz_crypt_aes_set_mode(wzaes->aes, wzaes->encryption_mode);
|
2018-11-01 10:32:42 -07:00
|
|
|
mz_crypt_aes_set_encrypt_key(wzaes->aes, kbuf, key_length);
|
2017-10-01 21:12:12 -07:00
|
|
|
|
2017-11-15 21:55:59 -08:00
|
|
|
// Initialize for authentication using key 2
|
2018-10-24 18:06:08 -07:00
|
|
|
mz_crypt_hmac_reset(wzaes->hmac);
|
|
|
|
mz_crypt_hmac_set_algorithm(wzaes->hmac, MZ_HASH_SHA1);
|
2018-10-31 18:25:53 -07:00
|
|
|
mz_crypt_hmac_init(wzaes->hmac, kbuf + key_length, key_length);
|
2017-11-15 21:55:59 -08:00
|
|
|
|
2018-10-24 18:06:08 -07:00
|
|
|
memcpy(verify, kbuf + (2 * key_length), MZ_AES_PW_VERIFY_SIZE);
|
2017-11-15 21:55:59 -08:00
|
|
|
|
|
|
|
if (mode & MZ_OPEN_MODE_WRITE)
|
|
|
|
{
|
2018-10-24 18:06:08 -07:00
|
|
|
if (mz_stream_write(wzaes->stream.base, salt_value, salt_length) != salt_length)
|
2018-10-28 16:15:13 -07:00
|
|
|
return MZ_WRITE_ERROR;
|
2017-10-01 21:12:12 -07:00
|
|
|
|
2018-10-24 18:06:08 -07:00
|
|
|
wzaes->total_out += salt_length;
|
2017-10-01 21:12:12 -07:00
|
|
|
|
2018-10-24 18:06:08 -07:00
|
|
|
if (mz_stream_write(wzaes->stream.base, verify, MZ_AES_PW_VERIFY_SIZE) != MZ_AES_PW_VERIFY_SIZE)
|
2018-10-28 16:15:13 -07:00
|
|
|
return MZ_WRITE_ERROR;
|
2017-11-15 21:55:59 -08:00
|
|
|
|
2018-10-24 18:06:08 -07:00
|
|
|
wzaes->total_out += MZ_AES_PW_VERIFY_SIZE;
|
2017-10-01 21:12:12 -07:00
|
|
|
}
|
2017-10-23 17:22:36 -07:00
|
|
|
else if (mode & MZ_OPEN_MODE_READ)
|
2017-10-01 21:12:12 -07:00
|
|
|
{
|
2018-10-24 18:06:08 -07:00
|
|
|
wzaes->total_in += salt_length;
|
2017-10-01 21:12:12 -07:00
|
|
|
|
2018-10-24 18:06:08 -07:00
|
|
|
if (mz_stream_read(wzaes->stream.base, verify_expected, MZ_AES_PW_VERIFY_SIZE) != MZ_AES_PW_VERIFY_SIZE)
|
2018-10-28 16:15:13 -07:00
|
|
|
return MZ_READ_ERROR;
|
2017-10-01 21:12:12 -07:00
|
|
|
|
2018-10-24 18:06:08 -07:00
|
|
|
wzaes->total_in += MZ_AES_PW_VERIFY_SIZE;
|
2017-10-01 21:12:12 -07:00
|
|
|
|
2017-11-15 21:55:59 -08:00
|
|
|
if (memcmp(verify_expected, verify, MZ_AES_PW_VERIFY_SIZE) != 0)
|
2017-12-07 06:59:53 -08:00
|
|
|
return MZ_PASSWORD_ERROR;
|
2017-10-01 21:12:12 -07:00
|
|
|
}
|
|
|
|
|
2018-10-24 18:06:08 -07:00
|
|
|
wzaes->mode = mode;
|
|
|
|
wzaes->initialized = 1;
|
2017-10-01 21:12:12 -07:00
|
|
|
|
2017-10-03 21:56:07 -07:00
|
|
|
return MZ_OK;
|
2017-10-01 21:12:12 -07:00
|
|
|
}
|
|
|
|
|
2018-10-24 09:23:14 -07:00
|
|
|
int32_t mz_stream_wzaes_is_open(void *stream)
|
2017-10-01 21:12:12 -07:00
|
|
|
{
|
2018-10-24 18:06:08 -07:00
|
|
|
mz_stream_wzaes *wzaes = (mz_stream_wzaes *)stream;
|
|
|
|
if (wzaes->initialized == 0)
|
2018-10-28 16:15:13 -07:00
|
|
|
return MZ_OPEN_ERROR;
|
2017-10-03 21:56:07 -07:00
|
|
|
return MZ_OK;
|
2017-10-01 21:12:12 -07:00
|
|
|
}
|
|
|
|
|
2018-10-24 09:23:14 -07:00
|
|
|
static int32_t mz_stream_wzaes_encrypt_data(void *stream, uint8_t *buf, int32_t size)
|
2017-11-15 21:55:59 -08:00
|
|
|
{
|
2018-10-24 18:06:08 -07:00
|
|
|
mz_stream_wzaes *wzaes = (mz_stream_wzaes *)stream;
|
|
|
|
uint32_t pos = wzaes->crypt_pos;
|
2017-11-15 21:55:59 -08:00
|
|
|
uint32_t i = 0;
|
2018-10-24 18:06:08 -07:00
|
|
|
int32_t err = MZ_OK;
|
2017-11-15 21:55:59 -08:00
|
|
|
|
|
|
|
while (i < (uint32_t)size)
|
|
|
|
{
|
2018-10-25 23:25:01 -07:00
|
|
|
if (pos == MZ_AES_BLOCK_SIZE)
|
2017-11-15 21:55:59 -08:00
|
|
|
{
|
|
|
|
uint32_t j = 0;
|
|
|
|
|
|
|
|
// Increment encryption nonce
|
2018-10-24 18:06:08 -07:00
|
|
|
while (j < 8 && !++wzaes->nonce[j])
|
2017-11-15 21:55:59 -08:00
|
|
|
j += 1;
|
|
|
|
|
|
|
|
// Encrypt the nonce to form next xor buffer
|
2018-10-25 23:25:01 -07:00
|
|
|
memcpy(wzaes->crypt_block, wzaes->nonce, MZ_AES_BLOCK_SIZE);
|
2018-10-25 19:35:50 -07:00
|
|
|
mz_crypt_aes_encrypt(wzaes->aes, wzaes->crypt_block, sizeof(wzaes->crypt_block));
|
2017-11-15 21:55:59 -08:00
|
|
|
pos = 0;
|
|
|
|
}
|
|
|
|
|
2018-10-24 18:06:08 -07:00
|
|
|
buf[i++] ^= wzaes->crypt_block[pos++];
|
2017-11-15 21:55:59 -08:00
|
|
|
}
|
|
|
|
|
2018-10-24 18:06:08 -07:00
|
|
|
wzaes->crypt_pos = pos;
|
|
|
|
return err;
|
2017-11-15 21:55:59 -08:00
|
|
|
}
|
|
|
|
|
2018-10-24 09:23:14 -07:00
|
|
|
int32_t mz_stream_wzaes_read(void *stream, void *buf, int32_t size)
|
2017-10-01 21:12:12 -07:00
|
|
|
{
|
2018-10-24 18:06:08 -07:00
|
|
|
mz_stream_wzaes *wzaes = (mz_stream_wzaes *)stream;
|
2018-10-26 20:00:52 -07:00
|
|
|
int64_t max_total_in = 0;
|
|
|
|
int32_t bytes_to_read = size;
|
2017-10-02 22:11:03 -07:00
|
|
|
int32_t read = 0;
|
2018-10-26 20:00:52 -07:00
|
|
|
|
|
|
|
max_total_in = wzaes->max_total_in - MZ_AES_FOOTER_SIZE;
|
|
|
|
if (bytes_to_read + wzaes->total_in > max_total_in)
|
|
|
|
bytes_to_read = (int32_t)(max_total_in - wzaes->total_in);
|
|
|
|
|
|
|
|
read = mz_stream_read(wzaes->stream.base, buf, bytes_to_read);
|
|
|
|
|
2017-10-01 21:12:12 -07:00
|
|
|
if (read > 0)
|
2017-11-15 21:55:59 -08:00
|
|
|
{
|
2018-10-24 18:06:08 -07:00
|
|
|
mz_crypt_hmac_update(wzaes->hmac, (uint8_t *)buf, read);
|
2018-10-24 09:23:14 -07:00
|
|
|
mz_stream_wzaes_encrypt_data(stream, (uint8_t *)buf, read);
|
2017-11-15 21:55:59 -08:00
|
|
|
}
|
|
|
|
|
2018-10-24 18:06:08 -07:00
|
|
|
wzaes->total_in += read;
|
2017-10-01 21:12:12 -07:00
|
|
|
return read;
|
|
|
|
}
|
|
|
|
|
2018-10-24 09:23:14 -07:00
|
|
|
int32_t mz_stream_wzaes_write(void *stream, const void *buf, int32_t size)
|
2017-10-01 21:12:12 -07:00
|
|
|
{
|
2018-10-24 18:06:08 -07:00
|
|
|
mz_stream_wzaes *wzaes = (mz_stream_wzaes *)stream;
|
2017-10-02 22:11:03 -07:00
|
|
|
int32_t written = 0;
|
2017-11-15 21:55:59 -08:00
|
|
|
|
2018-10-08 22:40:38 -07:00
|
|
|
if (size < 0)
|
|
|
|
return MZ_PARAM_ERROR;
|
2018-10-24 18:06:08 -07:00
|
|
|
if (size > (int32_t)sizeof(wzaes->buffer))
|
2018-10-28 16:15:13 -07:00
|
|
|
return MZ_BUF_ERROR;
|
2017-11-15 21:55:59 -08:00
|
|
|
|
2018-10-24 18:06:08 -07:00
|
|
|
memcpy(wzaes->buffer, buf, size);
|
|
|
|
mz_stream_wzaes_encrypt_data(stream, (uint8_t *)wzaes->buffer, size);
|
|
|
|
mz_crypt_hmac_update(wzaes->hmac, wzaes->buffer, size);
|
2017-11-15 21:55:59 -08:00
|
|
|
|
2018-10-24 18:06:08 -07:00
|
|
|
written = mz_stream_write(wzaes->stream.base, wzaes->buffer, size);
|
2017-10-01 21:12:12 -07:00
|
|
|
if (written > 0)
|
2018-10-24 18:06:08 -07:00
|
|
|
wzaes->total_out += written;
|
2017-10-01 21:12:12 -07:00
|
|
|
return written;
|
|
|
|
}
|
|
|
|
|
2018-10-24 09:23:14 -07:00
|
|
|
int64_t mz_stream_wzaes_tell(void *stream)
|
2017-10-01 21:12:12 -07:00
|
|
|
{
|
2018-10-24 18:06:08 -07:00
|
|
|
mz_stream_wzaes *wzaes = (mz_stream_wzaes *)stream;
|
|
|
|
return mz_stream_tell(wzaes->stream.base);
|
2017-10-01 21:12:12 -07:00
|
|
|
}
|
|
|
|
|
2018-10-24 09:23:14 -07:00
|
|
|
int32_t mz_stream_wzaes_seek(void *stream, int64_t offset, int32_t origin)
|
2017-10-01 21:12:12 -07:00
|
|
|
{
|
2018-10-24 18:06:08 -07:00
|
|
|
mz_stream_wzaes *wzaes = (mz_stream_wzaes *)stream;
|
|
|
|
return mz_stream_seek(wzaes->stream.base, offset, origin);
|
2017-10-01 21:12:12 -07:00
|
|
|
}
|
|
|
|
|
2018-10-24 09:23:14 -07:00
|
|
|
int32_t mz_stream_wzaes_close(void *stream)
|
2017-10-01 21:12:12 -07:00
|
|
|
{
|
2018-10-24 18:06:08 -07:00
|
|
|
mz_stream_wzaes *wzaes = (mz_stream_wzaes *)stream;
|
|
|
|
uint8_t expected_hash[MZ_AES_AUTHCODE_SIZE];
|
|
|
|
uint8_t computed_hash[MZ_HASH_SHA1_SIZE];
|
2017-11-15 21:55:59 -08:00
|
|
|
|
2018-10-24 18:06:08 -07:00
|
|
|
mz_crypt_hmac_end(wzaes->hmac, computed_hash, sizeof(computed_hash));
|
2017-10-01 21:12:12 -07:00
|
|
|
|
2018-10-24 18:06:08 -07:00
|
|
|
if (wzaes->mode & MZ_OPEN_MODE_WRITE)
|
2017-10-01 21:12:12 -07:00
|
|
|
{
|
2018-10-24 18:06:08 -07:00
|
|
|
if (mz_stream_write(wzaes->stream.base, computed_hash, MZ_AES_AUTHCODE_SIZE) != MZ_AES_AUTHCODE_SIZE)
|
2018-10-28 16:15:13 -07:00
|
|
|
return MZ_WRITE_ERROR;
|
2017-10-01 21:12:12 -07:00
|
|
|
|
2018-10-24 18:06:08 -07:00
|
|
|
wzaes->total_out += MZ_AES_AUTHCODE_SIZE;
|
2017-10-01 21:12:12 -07:00
|
|
|
}
|
2018-10-24 18:06:08 -07:00
|
|
|
else if (wzaes->mode & MZ_OPEN_MODE_READ)
|
2017-10-01 21:12:12 -07:00
|
|
|
{
|
2018-10-24 18:06:08 -07:00
|
|
|
if (mz_stream_read(wzaes->stream.base, expected_hash, MZ_AES_AUTHCODE_SIZE) != MZ_AES_AUTHCODE_SIZE)
|
2018-10-28 16:15:13 -07:00
|
|
|
return MZ_READ_ERROR;
|
2017-10-01 21:12:12 -07:00
|
|
|
|
2018-10-24 18:06:08 -07:00
|
|
|
wzaes->total_in += MZ_AES_AUTHCODE_SIZE;
|
2017-10-01 21:12:12 -07:00
|
|
|
|
2018-07-09 07:53:17 -07:00
|
|
|
// If entire entry was not read this will fail
|
2018-10-24 18:06:08 -07:00
|
|
|
if (memcmp(computed_hash, expected_hash, MZ_AES_AUTHCODE_SIZE) != 0)
|
2017-10-03 21:56:07 -07:00
|
|
|
return MZ_CRC_ERROR;
|
2017-10-01 21:12:12 -07:00
|
|
|
}
|
|
|
|
|
2018-10-24 18:06:08 -07:00
|
|
|
wzaes->initialized = 0;
|
2017-10-03 21:56:07 -07:00
|
|
|
return MZ_OK;
|
2017-10-01 21:12:12 -07:00
|
|
|
}
|
|
|
|
|
2018-10-24 09:23:14 -07:00
|
|
|
int32_t mz_stream_wzaes_error(void *stream)
|
2017-10-01 21:12:12 -07:00
|
|
|
{
|
2018-10-24 18:06:08 -07:00
|
|
|
mz_stream_wzaes *wzaes = (mz_stream_wzaes *)stream;
|
|
|
|
return wzaes->error;
|
2017-10-01 21:12:12 -07:00
|
|
|
}
|
|
|
|
|
2018-10-24 09:23:14 -07:00
|
|
|
void mz_stream_wzaes_set_password(void *stream, const char *password)
|
2017-10-01 21:12:12 -07:00
|
|
|
{
|
2018-10-24 18:06:08 -07:00
|
|
|
mz_stream_wzaes *wzaes = (mz_stream_wzaes *)stream;
|
|
|
|
wzaes->password = password;
|
2017-10-01 21:12:12 -07:00
|
|
|
}
|
|
|
|
|
2018-10-24 09:23:14 -07:00
|
|
|
void mz_stream_wzaes_set_encryption_mode(void *stream, int16_t encryption_mode)
|
2017-10-01 21:12:12 -07:00
|
|
|
{
|
2018-10-24 18:06:08 -07:00
|
|
|
mz_stream_wzaes *wzaes = (mz_stream_wzaes *)stream;
|
|
|
|
wzaes->encryption_mode = encryption_mode;
|
2017-10-01 21:12:12 -07:00
|
|
|
}
|
|
|
|
|
2018-10-24 09:23:14 -07:00
|
|
|
int32_t mz_stream_wzaes_get_prop_int64(void *stream, int32_t prop, int64_t *value)
|
2017-10-02 22:11:03 -07:00
|
|
|
{
|
2018-10-24 18:06:08 -07:00
|
|
|
mz_stream_wzaes *wzaes = (mz_stream_wzaes *)stream;
|
2017-10-09 23:36:30 -07:00
|
|
|
switch (prop)
|
|
|
|
{
|
2018-04-24 10:02:39 +00:00
|
|
|
case MZ_STREAM_PROP_TOTAL_IN:
|
2018-10-24 18:06:08 -07:00
|
|
|
*value = wzaes->total_in;
|
2018-07-11 15:34:45 -07:00
|
|
|
break;
|
2018-04-24 10:02:39 +00:00
|
|
|
case MZ_STREAM_PROP_TOTAL_OUT:
|
2018-10-24 18:06:08 -07:00
|
|
|
*value = wzaes->total_out;
|
2018-07-11 15:34:45 -07:00
|
|
|
break;
|
2018-07-09 07:53:17 -07:00
|
|
|
case MZ_STREAM_PROP_TOTAL_IN_MAX:
|
2018-10-24 18:06:08 -07:00
|
|
|
*value = wzaes->max_total_in;
|
2018-07-11 15:34:45 -07:00
|
|
|
break;
|
2017-10-09 23:36:30 -07:00
|
|
|
case MZ_STREAM_PROP_HEADER_SIZE:
|
2018-10-24 18:06:08 -07:00
|
|
|
*value = MZ_AES_SALT_LENGTH((int64_t)wzaes->encryption_mode) + MZ_AES_PW_VERIFY_SIZE;
|
2018-07-11 15:34:45 -07:00
|
|
|
break;
|
2017-10-09 23:36:30 -07:00
|
|
|
case MZ_STREAM_PROP_FOOTER_SIZE:
|
2017-11-15 21:55:59 -08:00
|
|
|
*value = MZ_AES_AUTHCODE_SIZE;
|
2018-07-11 15:34:45 -07:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return MZ_EXIST_ERROR;
|
2017-10-09 23:36:30 -07:00
|
|
|
}
|
2018-07-11 15:34:45 -07:00
|
|
|
return MZ_OK;
|
2017-10-03 21:56:07 -07:00
|
|
|
}
|
|
|
|
|
2018-10-24 09:23:14 -07:00
|
|
|
int32_t mz_stream_wzaes_set_prop_int64(void *stream, int32_t prop, int64_t value)
|
2018-07-09 07:53:17 -07:00
|
|
|
{
|
2018-10-24 18:06:08 -07:00
|
|
|
mz_stream_wzaes *wzaes = (mz_stream_wzaes *)stream;
|
2018-07-09 07:53:17 -07:00
|
|
|
switch (prop)
|
|
|
|
{
|
|
|
|
case MZ_STREAM_PROP_TOTAL_IN_MAX:
|
2018-10-24 18:06:08 -07:00
|
|
|
wzaes->max_total_in = value;
|
2018-07-11 15:34:45 -07:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return MZ_EXIST_ERROR;
|
2018-07-09 07:53:17 -07:00
|
|
|
}
|
2018-07-11 15:34:45 -07:00
|
|
|
return MZ_OK;
|
2018-07-09 07:53:17 -07:00
|
|
|
}
|
|
|
|
|
2018-10-24 09:23:14 -07:00
|
|
|
void *mz_stream_wzaes_create(void **stream)
|
2017-10-01 21:12:12 -07:00
|
|
|
{
|
2018-10-24 18:06:08 -07:00
|
|
|
mz_stream_wzaes *wzaes = NULL;
|
2017-10-01 21:43:24 -07:00
|
|
|
|
2018-10-24 18:06:08 -07:00
|
|
|
wzaes = (mz_stream_wzaes *)MZ_ALLOC(sizeof(mz_stream_wzaes));
|
|
|
|
if (wzaes != NULL)
|
2017-10-01 21:43:24 -07:00
|
|
|
{
|
2018-10-24 18:06:08 -07:00
|
|
|
memset(wzaes, 0, sizeof(mz_stream_wzaes));
|
|
|
|
wzaes->stream.vtbl = &mz_stream_wzaes_vtbl;
|
|
|
|
wzaes->encryption_mode = MZ_AES_ENCRYPTION_MODE_256;
|
|
|
|
|
|
|
|
mz_crypt_hmac_create(&wzaes->hmac);
|
|
|
|
mz_crypt_aes_create(&wzaes->aes);
|
2017-10-01 21:43:24 -07:00
|
|
|
}
|
|
|
|
if (stream != NULL)
|
2018-10-24 18:06:08 -07:00
|
|
|
*stream = wzaes;
|
2017-10-01 21:12:12 -07:00
|
|
|
|
2018-10-24 18:06:08 -07:00
|
|
|
return wzaes;
|
2017-10-01 21:12:12 -07:00
|
|
|
}
|
|
|
|
|
2018-10-24 09:23:14 -07:00
|
|
|
void mz_stream_wzaes_delete(void **stream)
|
2017-10-01 21:12:12 -07:00
|
|
|
{
|
2018-10-24 18:06:08 -07:00
|
|
|
mz_stream_wzaes *wzaes = NULL;
|
2017-10-01 21:43:24 -07:00
|
|
|
if (stream == NULL)
|
|
|
|
return;
|
2018-10-24 18:06:08 -07:00
|
|
|
wzaes = (mz_stream_wzaes *)*stream;
|
|
|
|
if (wzaes != NULL)
|
|
|
|
{
|
|
|
|
mz_crypt_aes_delete(&wzaes->aes);
|
|
|
|
mz_crypt_hmac_delete(&wzaes->hmac);
|
|
|
|
MZ_FREE(wzaes);
|
|
|
|
}
|
2017-10-05 18:45:23 -07:00
|
|
|
*stream = NULL;
|
2017-10-19 09:57:54 -07:00
|
|
|
}
|
|
|
|
|
2018-10-24 09:23:14 -07:00
|
|
|
void *mz_stream_wzaes_get_interface(void)
|
2017-10-19 09:57:54 -07:00
|
|
|
{
|
2018-10-24 09:23:14 -07:00
|
|
|
return (void *)&mz_stream_wzaes_vtbl;
|
2017-10-19 09:57:54 -07:00
|
|
|
}
|