mirror of
https://github.com/neovim/neovim.git
synced 2026-03-16 13:57:25 +00:00
Move files from src/ to src/nvim/. - src/nvim/ becomes the new root dir for nvim executable sources. - src/libnvim/ is planned to become root dir of the neovim library.
14 lines
420 B
C
14 lines
420 B
C
#ifndef NEOVIM_BLOWFISH_H
|
|
#define NEOVIM_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 // NEOVIM_BLOWFISH_H
|