2018-10-25 19:35:50 -07:00
|
|
|
/* mz_crypt.h -- Crypto/hash functions
|
2018-11-02 17:47:53 -07:00
|
|
|
Version 2.7.2, November 2, 2018
|
2018-10-24 18:06:08 -07:00
|
|
|
part of the MiniZip project
|
|
|
|
|
|
|
|
Copyright (C) 2010-2018 Nathan Moinvaziri
|
|
|
|
https://github.com/nmoinvaz/minizip
|
|
|
|
|
|
|
|
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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef MZ_CRYPT_H
|
|
|
|
#define MZ_CRYPT_H
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/***************************************************************************/
|
|
|
|
|
|
|
|
int32_t mz_crypt_rand(uint8_t *buf, int32_t size);
|
|
|
|
|
|
|
|
void mz_crypt_sha_reset(void *handle);
|
|
|
|
int32_t mz_crypt_sha_begin(void *handle);
|
|
|
|
int32_t mz_crypt_sha_update(void *handle, const void *buf, int32_t size);
|
|
|
|
int32_t mz_crypt_sha_end(void *handle, uint8_t *digest, int32_t digest_size);
|
|
|
|
void mz_crypt_sha_set_algorithm(void *handle, uint16_t algorithm);
|
|
|
|
void* mz_crypt_sha_create(void **handle);
|
|
|
|
void mz_crypt_sha_delete(void **handle);
|
|
|
|
|
|
|
|
void mz_crypt_aes_reset(void *handle);
|
2018-10-25 19:35:50 -07:00
|
|
|
int32_t mz_crypt_aes_encrypt(void *handle, uint8_t *buf, int32_t size);
|
|
|
|
int32_t mz_crypt_aes_decrypt(void *handle, uint8_t *buf, int32_t size);
|
2018-11-01 10:32:42 -07:00
|
|
|
int32_t mz_crypt_aes_set_encrypt_key(void *handle, const void *key, int32_t key_length);
|
|
|
|
int32_t mz_crypt_aes_set_decrypt_key(void *handle, const void *key, int32_t key_length);
|
2018-10-24 18:06:08 -07:00
|
|
|
void mz_crypt_aes_set_mode(void *handle, int32_t mode);
|
|
|
|
void* mz_crypt_aes_create(void **handle);
|
|
|
|
void mz_crypt_aes_delete(void **handle);
|
|
|
|
|
|
|
|
void mz_crypt_hmac_reset(void *handle);
|
2018-10-31 18:25:53 -07:00
|
|
|
int32_t mz_crypt_hmac_init(void *handle, const void *key, int32_t key_length);
|
2018-10-24 18:06:08 -07:00
|
|
|
int32_t mz_crypt_hmac_update(void *handle, const void *buf, int32_t size);
|
|
|
|
int32_t mz_crypt_hmac_end(void *handle, uint8_t *digest, int32_t digest_size);
|
|
|
|
int32_t mz_crypt_hmac_copy(void *src_handle, void *target_handle);
|
|
|
|
void mz_crypt_hmac_set_algorithm(void *handle, uint16_t algorithm);
|
|
|
|
void* mz_crypt_hmac_create(void **handle);
|
|
|
|
void mz_crypt_hmac_delete(void **handle);
|
|
|
|
|
2018-11-02 16:22:39 -07:00
|
|
|
int32_t mz_crypt_sign(uint8_t *message, int32_t message_size, uint8_t *cert_data, int32_t cert_data_size,
|
|
|
|
const char *cert_pwd, uint8_t **signature, int32_t *signature_size);
|
2018-10-24 18:06:08 -07:00
|
|
|
int32_t mz_crypt_sign_verify(uint8_t *message, int32_t message_size, uint8_t *signature, int32_t signature_size);
|
|
|
|
|
|
|
|
/***************************************************************************/
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|