mz_strm_pkcrypt.h 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. /* mz_strm_pkcrypt.h -- Code for traditional PKWARE encryption
  2. part of the minizip-ng project
  3. Copyright (C) 2010-2021 Nathan Moinvaziri
  4. https://github.com/zlib-ng/minizip-ng
  5. This program is distributed under the terms of the same license as zlib.
  6. See the accompanying LICENSE file for the full text of the license.
  7. */
  8. #ifndef MZ_STREAM_PKCRYPT_H
  9. #define MZ_STREAM_PKCRYPT_H
  10. #ifdef __cplusplus
  11. extern "C" {
  12. #endif
  13. /***************************************************************************/
  14. int32_t mz_stream_pkcrypt_open(void *stream, const char *filename, int32_t mode);
  15. int32_t mz_stream_pkcrypt_is_open(void *stream);
  16. int32_t mz_stream_pkcrypt_read(void *stream, void *buf, int32_t size);
  17. int32_t mz_stream_pkcrypt_write(void *stream, const void *buf, int32_t size);
  18. int64_t mz_stream_pkcrypt_tell(void *stream);
  19. int32_t mz_stream_pkcrypt_seek(void *stream, int64_t offset, int32_t origin);
  20. int32_t mz_stream_pkcrypt_close(void *stream);
  21. int32_t mz_stream_pkcrypt_error(void *stream);
  22. void mz_stream_pkcrypt_set_password(void *stream, const char *password);
  23. void mz_stream_pkcrypt_set_verify(void *stream, uint8_t verify1, uint8_t verify2);
  24. void mz_stream_pkcrypt_get_verify(void *stream, uint8_t *verify1, uint8_t *verify2);
  25. int32_t mz_stream_pkcrypt_get_prop_int64(void *stream, int32_t prop, int64_t *value);
  26. int32_t mz_stream_pkcrypt_set_prop_int64(void *stream, int32_t prop, int64_t value);
  27. void* mz_stream_pkcrypt_create(void **stream);
  28. void mz_stream_pkcrypt_delete(void **stream);
  29. void* mz_stream_pkcrypt_get_interface(void);
  30. /***************************************************************************/
  31. #ifdef __cplusplus
  32. }
  33. #endif
  34. #endif