aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/blowfish.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/nvim/blowfish.h')
-rw-r--r--src/nvim/blowfish.h13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/nvim/blowfish.h b/src/nvim/blowfish.h
deleted file mode 100644
index 2d1d0ba1a0..0000000000
--- a/src/nvim/blowfish.h
+++ /dev/null
@@ -1,13 +0,0 @@
-#ifndef NVIM_BLOWFISH_H
-#define NVIM_BLOWFISH_H
-
-void bf_key_init(char_u *password, char_u *salt, int salt_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);
-void bf_crypt_save(void);
-void bf_crypt_restore(void);
-int blowfish_self_test(void);
-
-#endif // NVIM_BLOWFISH_H