2018-10-24 09:23:14 -07:00
|
|
|
/* mz_strm_wzaes.h -- Stream for WinZIP AES encryption
|
2021-01-23 16:18:11 -08:00
|
|
|
part of the minizip-ng project
|
2018-10-24 09:23:14 -07:00
|
|
|
|
2023-02-16 13:14:21 -08:00
|
|
|
Copyright (C) Nathan Moinvaziri
|
2021-01-23 16:18:11 -08:00
|
|
|
https://github.com/zlib-ng/minizip-ng
|
2018-10-24 09:23:14 -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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef MZ_STREAM_WZAES_SHA1_H
|
|
|
|
#define MZ_STREAM_WZAES_SHA1_H
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/***************************************************************************/
|
|
|
|
|
|
|
|
int32_t mz_stream_wzaes_open(void *stream, const char *filename, int32_t mode);
|
|
|
|
int32_t mz_stream_wzaes_is_open(void *stream);
|
|
|
|
int32_t mz_stream_wzaes_read(void *stream, void *buf, int32_t size);
|
|
|
|
int32_t mz_stream_wzaes_write(void *stream, const void *buf, int32_t size);
|
|
|
|
int64_t mz_stream_wzaes_tell(void *stream);
|
|
|
|
int32_t mz_stream_wzaes_seek(void *stream, int64_t offset, int32_t origin);
|
|
|
|
int32_t mz_stream_wzaes_close(void *stream);
|
|
|
|
int32_t mz_stream_wzaes_error(void *stream);
|
|
|
|
|
|
|
|
void mz_stream_wzaes_set_password(void *stream, const char *password);
|
2023-04-17 14:20:50 -07:00
|
|
|
void mz_stream_wzaes_set_strength(void *stream, uint8_t strength);
|
2018-10-24 09:23:14 -07:00
|
|
|
|
|
|
|
int32_t mz_stream_wzaes_get_prop_int64(void *stream, int32_t prop, int64_t *value);
|
|
|
|
int32_t mz_stream_wzaes_set_prop_int64(void *stream, int32_t prop, int64_t value);
|
|
|
|
|
2023-03-13 10:50:58 -07:00
|
|
|
void* mz_stream_wzaes_create(void);
|
2018-10-24 09:23:14 -07:00
|
|
|
void mz_stream_wzaes_delete(void **stream);
|
|
|
|
|
|
|
|
void* mz_stream_wzaes_get_interface(void);
|
|
|
|
|
|
|
|
/***************************************************************************/
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|