forked from mirror/zip
update README.txt to explain CTR differences and possible solution.
This commit is contained in:
parent
a4e475ab56
commit
5e7b6fad69
|
@ -11,7 +11,10 @@ hello.txt -> compress -> encrypt -> .zip -> decrypt -> decompress -> hello.txt
|
||||||
|
|
||||||
Roadmap
|
Roadmap
|
||||||
==============================================================================
|
==============================================================================
|
||||||
Reading - Working on it. Some bugs to work out (TODO: check for AE-2 and skip CRC).
|
Reading - Working on it. Seems like the AES-CTR counter incrementer for WinZip
|
||||||
|
encryption follows a little-endian, left-aligned counter whereas Go's AES-CTR
|
||||||
|
implementation is big-endian, right-aligned counter. Will have to read block by
|
||||||
|
block and increment the counter by hand.
|
||||||
Writing - Not started.
|
Writing - Not started.
|
||||||
Testing - Needs more.
|
Testing - Needs more.
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue