aboutsummaryrefslogtreecommitdiff
path: root/src/blowfish.h
diff options
context:
space:
mode:
authoroni-link <knil.ino@gmail.com>2014-04-03 13:09:07 +0200
committerThiago de Arruda <tpadilha84@gmail.com>2014-04-05 10:10:08 -0300
commitade0c127e56ff248039c60c3b29abcac24be1949 (patch)
tree9e3fa8d17b76f37a75fb89f6b5ee34cbd87309ee /src/blowfish.h
parent26206d4cfddb0375b14c47ccf94c480a886f29a1 (diff)
downloadrneovim-ade0c127e56ff248039c60c3b29abcac24be1949.tar.gz
rneovim-ade0c127e56ff248039c60c3b29abcac24be1949.tar.bz2
rneovim-ade0c127e56ff248039c60c3b29abcac24be1949.zip
vim-patch:7.4.172
Problem: The blowfish code mentions output feedback, but the code is actually doing cipher feedback. Solution: Adjust names and comments. https://code.google.com/p/vim/source/detail?r=391e10afccf6879dcfab8b28cb1587a13eb835c0
Diffstat (limited to 'src/blowfish.h')
-rw-r--r--src/blowfish.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/blowfish.h b/src/blowfish.h
index cb0363e186..ecf6278b6d 100644
--- a/src/blowfish.h
+++ b/src/blowfish.h
@@ -2,7 +2,7 @@
#define NEOVIM_BLOWFISH_H
void bf_key_init(char_u *password, char_u *salt, int salt_len);
-void bf_ofb_init(char_u *iv, int iv_len);
+void bf_cfb_init(char_u *iv, int iv_len);
void bf_crypt_encode(char_u *from, size_t len, char_u *to);
void bf_crypt_decode(char_u *ptr, long len);
void bf_crypt_init_keys(char_u *passwd);