mirror of
https://github.com/zlib-ng/minizip-ng
synced 2026-08-25 14:26:08 -04:00
Added initial support for other AES modes.
This commit is contained in:
parent
82f1cfb1e2
commit
23fac55eda
6 changed files with 131 additions and 57 deletions
2
mz.h
2
mz.h
|
|
@ -114,6 +114,8 @@
|
|||
#define MZ_AES_VERSION (1)
|
||||
#define MZ_AES_MODE_ECB (0)
|
||||
#define MZ_AES_MODE_CBC (1)
|
||||
#define MZ_AES_MODE_CTR (2)
|
||||
#define MZ_AES_MODE_GCM (3)
|
||||
#define MZ_AES_STRENGTH_128 (1)
|
||||
#define MZ_AES_STRENGTH_192 (2)
|
||||
#define MZ_AES_STRENGTH_256 (3)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue