Age | Commit message (Collapse) | Author | |
---|---|---|---|
2016-08-29 | patch 7.4.2293 | Bram Moolenaar | |
Problem: Modelines in source code are inconsistant. Solution: Use the same line in most files. Add 'noet'. (Naruhiko Nishino) | |||
2016-02-23 | patch 7.4.1399 | Bram Moolenaar | |
Problem: The MS-DOS code does not build. Solution: Remove the old MS-DOS code. | |||
2016-01-30 | patch 7.4.1205 | Bram Moolenaar | |
Problem: Using old style function declarations. Solution: Change to new style function declarations. (script by Hirohito Higashi) | |||
2016-01-29 | patch 7.4.1200 | Bram Moolenaar | |
Problem: Still using __ARGS. Solution: Remove __ARGS in several files. (script by Hirohito Higashi) | |||
2014-08-10 | updated for version 7.4.399 | Bram Moolenaar | |
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) | |||
2014-02-11 | updated for version 7.4.172 | Bram Moolenaar | |
Problem: The blowfish code mentions output feedback, but the code is actually doing cipher feedback. Solution: Adjust names and comments. | |||
2011-02-25 | updated for version 7.3.126 | Bram Moolenaar | |
Problem: Compiler warning for signed pointer. Solution: Use unsigned int argument for sscanf(). | |||
2010-07-14 | Support completion for ":find". (Nazri Ramliy) | Bram Moolenaar | |
Cleanup white space. | |||
2010-06-22 | Fix compiler warnings for shadowed variables. Make 'conceal' a long instead | Bram Moolenaar | |
of int. | |||
2010-06-21 | Crypt the swapfile. | Bram Moolenaar | |
2010-06-13 | Added salt to blowfish encryption. | Bram Moolenaar | |
2010-06-06 | Fix a few compiler warnings. Fix crash with encrypted undo file. | Bram Moolenaar | |
2010-06-02 | Optimize the blowfish crypt/decrypt code a bit more. | Bram Moolenaar | |
2010-06-01 | Made crypt/decrypt faster. | Bram Moolenaar | |
2010-05-24 | Improve the MS-Windows installer. | Bram Moolenaar | |
2010-05-24 | Fix uninit memory read in undo code. Fix uint32_t in proto file. | Bram Moolenaar | |
A few minor changes. | |||
2010-05-19 | Use UINT32_T in the code, define it to uint32_t or unsigned int. | Bram Moolenaar | |
Better autoconf check for uint32_t. | |||
2010-05-18 | Fix build on Cygwin and MingW. | Bram Moolenaar | |
2010-05-17 | Fixed encryption big/little endian test. | Bram Moolenaar | |
Use uint32_t to avoid crash on 64 bit machines. Added error numbers for Blowfish errors. Fixed the tiny version not building. | |||
2010-05-16 | Minor updates to blowfish encryption. | Bram Moolenaar | |
2010-05-16 | Add the blowfish encryption patch from Mohsin Ahmed. Needs more work. | Bram Moolenaar | |