update README.txt to explain CTR differences and possible solution.

This commit is contained in:
alexmullins 2015-10-30 17:24:00 -05:00
parent a4e475ab56
commit 5e7b6fad69
1 changed files with 4 additions and 1 deletions

View File

@ -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.