summaryrefslogtreecommitdiff
path: root/src/crypt_zip.c
Commit message (Collapse)AuthorAgeFilesLines
* patch 7.4.1205v7.4.1205Bram Moolenaar2016-01-301-18/+18
| | | | | | Problem: Using old style function declarations. Solution: Change to new style function declarations. (script by Hirohito Higashi)
* patch 7.4.1196v7.4.1196Bram Moolenaar2016-01-291-1/+1
| | | | | Problem: Still using __ARGS. Solution: Remove __ARGS in several files. (script by Hirohito Higashi)
* updated for version 7.4.399v7.4.399Bram Moolenaar2014-08-101-0/+158
Problem: Encryption implementation is messy. Blowfish encryption has a weakness. Solution: Refactor the encryption, store the state in an allocated struct instead of using a save/restore mechanism. Introduce the "blowfish2" method, which does not have the weakness and encrypts the whole undo file. (largely by David Leadbeater)