diff options
author | Bram Moolenaar <Bram@vim.org> | 2010-06-02 20:32:23 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2010-06-02 20:32:23 +0200 |
commit | bbd6afe03e138886f70989f31be110726ca077d8 (patch) | |
tree | 893d4513e6ff7b75a4f3bdeddc9867ada427a0a9 /runtime/doc | |
parent | 04c9bafa7136564e3059d493dffa84a4c9b6dfb7 (diff) | |
download | vim-git-bbd6afe03e138886f70989f31be110726ca077d8.tar.gz |
Optimize the blowfish crypt/decrypt code a bit more.
Diffstat (limited to 'runtime/doc')
-rw-r--r-- | runtime/doc/todo.txt | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/runtime/doc/todo.txt b/runtime/doc/todo.txt index 41326a9bf..daec1bc68 100644 --- a/runtime/doc/todo.txt +++ b/runtime/doc/todo.txt @@ -1082,6 +1082,8 @@ restored. (Luc St-Louis) Vim 7.3: +- undofile: keep markers where the file was written/read, so that it's easy to + go back to a saved version of the file ":earlier 1file"? - using NSIS 2.46: install on Windows 7 works, but no "Edit with Vim" menu. Use register_shell_extension()? (George Reilly, 2010 May 26) Ron's version: http://dev.ronware.org/p/vim/finfo?name=gvim.nsi @@ -1094,11 +1096,6 @@ Vim 7.3: Verify recovery works. - Update for crypt code to use salt. (Mohsin May 30) Make the strengthen_key value configurable and store it in the header. -- Do profiling on crypt code to find obvious bottlenecks. - bf_ranbyte() and bf_ofb_init() are called for each byte, can they be done - inline somehow? - -> Add a function in blowfish.c to process an array, called once from - crypt_decode() and crypt_encode(). Patches to include: - Include conceal patch? http://vince.negri.googlepages.com/ |