minizip-ng/mzstrm_aes.c

259 lines
7.2 KiB
C
Raw Normal View History

/* mzstrm_aes.c -- Stream for WinZip AES encryption
2017-10-01 21:12:12 -07:00
Copyright (C) 2012-2017 Nathan Moinvaziri
https://github.com/nmoinvaz/minizip
2017-10-01 21:12:12 -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 <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "mzstrm.h"
#include "mzstrm_aes.h"
2017-10-01 21:12:12 -07:00
#include "aes/aes.h"
#include "aes/fileenc.h"
#include "aes/prng.h"
2017-10-01 21:43:24 -07:00
2017-10-03 21:56:07 -07:00
/***************************************************************************/
#define MZ_AES_PWVERIFYSIZE (2)
#define MZ_AES_AUTHCODESIZE (10)
#define MZ_AES_MAXSALTLENGTH (16)
2017-10-01 21:12:12 -07:00
2017-10-03 21:56:07 -07:00
/***************************************************************************/
2017-10-01 21:43:24 -07:00
typedef struct mz_stream_aes_s {
mz_stream stream;
fcrypt_ctx crypt_ctx;
int16_t mode;
int16_t initialized;
int16_t error;
int16_t encryption_mode;
const char *password;
int64_t total_in;
int64_t total_out;
2017-10-01 21:43:24 -07:00
} mz_stream_aes;
2017-10-01 21:12:12 -07:00
2017-10-03 21:56:07 -07:00
/***************************************************************************/
int32_t mz_stream_aes_open(void *stream, const char *path, int mode)
2017-10-01 21:12:12 -07:00
{
2017-10-01 21:43:24 -07:00
mz_stream_aes *aes = (mz_stream_aes *)stream;
2017-10-01 21:12:12 -07:00
uint16_t salt_length = 0;
uint8_t verify[MZ_AES_PWVERIFYSIZE];
uint8_t verify_expected[MZ_AES_PWVERIFYSIZE];
uint8_t salt_value[MZ_AES_MAXSALTLENGTH];
2017-10-01 21:12:12 -07:00
prng_ctx rng_ctx[1];
const char *password = path;
2017-10-01 21:12:12 -07:00
aes->total_in = 0;
aes->total_out = 0;
aes->initialized = 0;
2017-10-03 21:56:07 -07:00
if (mz_stream_is_open(aes->stream.base) != MZ_OK)
return MZ_STREAM_ERROR;
if (password == NULL)
password = aes->password;
if (password == NULL)
2017-10-03 21:56:07 -07:00
return MZ_STREAM_ERROR;
2017-10-01 21:12:12 -07:00
salt_length = SALT_LENGTH(aes->encryption_mode);
2017-10-01 21:43:24 -07:00
if (mode & MZ_STREAM_MODE_WRITE)
2017-10-01 21:12:12 -07:00
{
prng_init(mz_os_rand, rng_ctx);
2017-10-01 21:12:12 -07:00
prng_rand(salt_value, salt_length, rng_ctx);
prng_end(rng_ctx);
if (fcrypt_init(aes->encryption_mode, (uint8_t *)password,
(uint32_t)strlen(password), salt_value, verify, &aes->crypt_ctx) != 0)
2017-10-03 21:56:07 -07:00
return MZ_STREAM_ERROR;
2017-10-01 21:12:12 -07:00
2017-10-01 21:43:24 -07:00
if (mz_stream_write(aes->stream.base, salt_value, salt_length) != salt_length)
2017-10-03 21:56:07 -07:00
return MZ_STREAM_ERROR;
2017-10-01 21:12:12 -07:00
aes->total_out += salt_length;
if (mz_stream_write(aes->stream.base, verify, MZ_AES_PWVERIFYSIZE) != MZ_AES_PWVERIFYSIZE)
2017-10-03 21:56:07 -07:00
return MZ_STREAM_ERROR;
2017-10-01 21:12:12 -07:00
aes->total_out += MZ_AES_PWVERIFYSIZE;
2017-10-01 21:12:12 -07:00
}
2017-10-01 21:43:24 -07:00
else if (mode & MZ_STREAM_MODE_READ)
2017-10-01 21:12:12 -07:00
{
2017-10-01 21:43:24 -07:00
if (mz_stream_read(aes->stream.base, salt_value, salt_length) != salt_length)
2017-10-03 21:56:07 -07:00
return MZ_STREAM_ERROR;
2017-10-01 21:12:12 -07:00
aes->total_in += salt_length;
if (mz_stream_read(aes->stream.base, verify_expected, MZ_AES_PWVERIFYSIZE) != MZ_AES_PWVERIFYSIZE)
2017-10-03 21:56:07 -07:00
return MZ_STREAM_ERROR;
2017-10-01 21:12:12 -07:00
aes->total_in += MZ_AES_PWVERIFYSIZE;
2017-10-01 21:12:12 -07:00
if (fcrypt_init(aes->encryption_mode, (uint8_t *)password,
(uint32_t)strlen(password), salt_value, verify, &aes->crypt_ctx) != 0)
2017-10-03 21:56:07 -07:00
return MZ_STREAM_ERROR;
2017-10-01 21:12:12 -07:00
if (memcmp(verify_expected, verify, MZ_AES_PWVERIFYSIZE) != 0)
2017-10-03 21:56:07 -07:00
return MZ_STREAM_ERROR;
2017-10-01 21:12:12 -07:00
}
aes->mode = mode;
aes->initialized = 1;
2017-10-03 21:56:07 -07:00
return MZ_OK;
2017-10-01 21:12:12 -07:00
}
int32_t mz_stream_aes_is_open(void *stream)
2017-10-01 21:12:12 -07:00
{
2017-10-01 21:43:24 -07:00
mz_stream_aes *aes = (mz_stream_aes *)stream;
2017-10-01 21:12:12 -07:00
if (aes->initialized == 0)
2017-10-03 21:56:07 -07:00
return MZ_STREAM_ERROR;
return MZ_OK;
2017-10-01 21:12:12 -07:00
}
int32_t mz_stream_aes_read(void *stream, void *buf, uint32_t size)
2017-10-01 21:12:12 -07:00
{
2017-10-01 21:43:24 -07:00
mz_stream_aes *aes = (mz_stream_aes *)stream;
int32_t read = 0;
2017-10-01 21:43:24 -07:00
read = mz_stream_read(aes->stream.base, buf, size);
2017-10-01 21:12:12 -07:00
if (read > 0)
fcrypt_decrypt((uint8_t *)buf, read, &aes->crypt_ctx);
aes->total_in += read;
return read;
}
int32_t mz_stream_aes_write(void *stream, const void *buf, uint32_t size)
2017-10-01 21:12:12 -07:00
{
2017-10-01 21:43:24 -07:00
mz_stream_aes *aes = (mz_stream_aes *)stream;
int32_t written = 0;
2017-10-01 21:12:12 -07:00
fcrypt_encrypt((uint8_t *)buf, size, &aes->crypt_ctx);
2017-10-01 21:43:24 -07:00
written = mz_stream_write(aes->stream.base, buf, size);
2017-10-01 21:12:12 -07:00
if (written > 0)
aes->total_out += written;
return written;
}
int64_t mz_stream_aes_tell(void *stream)
2017-10-01 21:12:12 -07:00
{
2017-10-01 21:43:24 -07:00
mz_stream_aes *aes = (mz_stream_aes *)stream;
return mz_stream_tell(aes->stream.base);
2017-10-01 21:12:12 -07:00
}
int32_t mz_stream_aes_seek(void *stream, uint64_t offset, int origin)
2017-10-01 21:12:12 -07:00
{
2017-10-01 21:43:24 -07:00
mz_stream_aes *aes = (mz_stream_aes *)stream;
return mz_stream_seek(aes->stream.base, offset, origin);
2017-10-01 21:12:12 -07:00
}
int32_t mz_stream_aes_close(void *stream)
2017-10-01 21:12:12 -07:00
{
2017-10-01 21:43:24 -07:00
mz_stream_aes *aes = (mz_stream_aes *)stream;
unsigned char authcode[MZ_AES_AUTHCODESIZE];
unsigned char rauthcode[MZ_AES_AUTHCODESIZE];
2017-10-01 21:12:12 -07:00
2017-10-01 21:43:24 -07:00
if (aes->mode & MZ_STREAM_MODE_WRITE)
2017-10-01 21:12:12 -07:00
{
fcrypt_end(authcode, &aes->crypt_ctx);
if (mz_stream_write(aes->stream.base, authcode, MZ_AES_AUTHCODESIZE) != MZ_AES_AUTHCODESIZE)
2017-10-03 21:56:07 -07:00
return MZ_STREAM_ERROR;
2017-10-01 21:12:12 -07:00
aes->total_out += MZ_AES_AUTHCODESIZE;
2017-10-01 21:12:12 -07:00
}
2017-10-01 21:43:24 -07:00
else if (aes->mode & MZ_STREAM_MODE_READ)
2017-10-01 21:12:12 -07:00
{
if (mz_stream_read(aes->stream.base, authcode, MZ_AES_AUTHCODESIZE) != MZ_AES_AUTHCODESIZE)
2017-10-03 21:56:07 -07:00
return MZ_STREAM_ERROR;
2017-10-01 21:12:12 -07:00
aes->total_in += MZ_AES_AUTHCODESIZE;
2017-10-01 21:12:12 -07:00
if (fcrypt_end(rauthcode, &aes->crypt_ctx) != MZ_AES_AUTHCODESIZE)
2017-10-03 21:56:07 -07:00
return MZ_STREAM_ERROR;
if (memcmp(authcode, rauthcode, MZ_AES_AUTHCODESIZE) != 0)
2017-10-03 21:56:07 -07:00
return MZ_CRC_ERROR;
2017-10-01 21:12:12 -07:00
}
aes->initialized = 0;
2017-10-03 21:56:07 -07:00
return MZ_OK;
2017-10-01 21:12:12 -07:00
}
int32_t mz_stream_aes_error(void *stream)
2017-10-01 21:12:12 -07:00
{
2017-10-01 21:43:24 -07:00
mz_stream_aes *aes = (mz_stream_aes *)stream;
2017-10-01 21:12:12 -07:00
return aes->error;
}
2017-10-02 00:44:51 -07:00
void mz_stream_aes_set_password(void *stream, const char *password)
2017-10-01 21:12:12 -07:00
{
2017-10-01 21:43:24 -07:00
mz_stream_aes *aes = (mz_stream_aes *)stream;
2017-10-01 21:12:12 -07:00
aes->password = password;
}
void mz_stream_aes_set_encryption_mode(void *stream, int16_t encryption_mode)
2017-10-01 21:12:12 -07:00
{
2017-10-01 21:43:24 -07:00
mz_stream_aes *aes = (mz_stream_aes *)stream;
2017-10-01 21:12:12 -07:00
aes->encryption_mode = encryption_mode;
}
int64_t mz_stream_aes_get_total_in(void *stream)
{
mz_stream_aes *aes = (mz_stream_aes *)stream;
return aes->total_in;
}
int64_t mz_stream_aes_get_total_out(void *stream)
{
mz_stream_aes *aes = (mz_stream_aes *)stream;
return aes->total_out;
}
2017-10-03 21:56:07 -07:00
int32_t mz_stream_aes_get_footer_size(void *stream)
{
return MZ_AES_AUTHCODESIZE;
}
void *mz_stream_aes_create(void **stream)
2017-10-01 21:12:12 -07:00
{
2017-10-01 21:43:24 -07:00
mz_stream_aes *aes = NULL;
aes = (mz_stream_aes *)malloc(sizeof(mz_stream_aes));
if (aes != NULL)
{
memset(aes, 0, sizeof(mz_stream_aes));
aes->stream.open = mz_stream_aes_open;
aes->stream.is_open = mz_stream_aes_is_open;
aes->stream.read = mz_stream_aes_read;
aes->stream.write = mz_stream_aes_write;
aes->stream.tell = mz_stream_aes_tell;
aes->stream.seek = mz_stream_aes_seek;
aes->stream.close = mz_stream_aes_close;
aes->stream.error = mz_stream_aes_error;
aes->stream.create = mz_stream_aes_create;
aes->stream.delete = mz_stream_aes_delete;
aes->stream.get_total_in = mz_stream_aes_get_total_in;
aes->stream.get_total_out = mz_stream_aes_get_total_out;
aes->encryption_mode = MZ_AES_ENCRYPTIONMODE;
2017-10-01 21:43:24 -07:00
}
if (stream != NULL)
*stream = aes;
2017-10-01 21:12:12 -07:00
return aes;
2017-10-01 21:12:12 -07:00
}
void mz_stream_aes_delete(void **stream)
2017-10-01 21:12:12 -07:00
{
2017-10-01 21:43:24 -07:00
mz_stream_aes *aes = NULL;
if (stream == NULL)
return;
aes = (mz_stream_aes *)*stream;
2017-10-01 21:12:12 -07:00
if (aes != NULL)
free(aes);
}