diff options
Diffstat (limited to 'src/blowfish.h')
-rw-r--r-- | src/blowfish.h | 2 |
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); |