1
0
forked from aniani/vim

updated for version 7.4.172

Problem:    The blowfish code mentions output feedback, but the code is
            actually doing cipher feedback.
Solution:   Adjust names and comments.
This commit is contained in:
Bram Moolenaar
2014-02-11 15:23:32 +01:00
parent 0a36fece92
commit 4d504a3e11
5 changed files with 27 additions and 25 deletions

View File

@@ -4914,7 +4914,7 @@ ml_crypt_prepare(mfp, offset, reading)
* block for the salt. */
vim_snprintf((char *)salt, sizeof(salt), "%ld", (long)offset);
bf_key_init(key, salt, (int)STRLEN(salt));
bf_ofb_init(seed, MF_SEED_LEN);
bf_cfb_init(seed, MF_SEED_LEN);
}
}