Bram Moolenaar | 40e6a71 | 2010-05-16 22:32:54 +0200 | [diff] [blame] | 1 | /* blowfish.c */ |
Christian Brabandt | f573c6e | 2021-06-20 14:02:16 +0200 | [diff] [blame] | 2 | void crypt_blowfish_encode(cryptstate_T *state, char_u *from, size_t len, char_u *to, int last); |
| 3 | void crypt_blowfish_decode(cryptstate_T *state, char_u *from, size_t len, char_u *to, int last); |
Bram Moolenaar | 6ee9658 | 2019-04-27 22:06:37 +0200 | [diff] [blame] | 4 | int crypt_blowfish_init(cryptstate_T *state, char_u *key, char_u *salt, int salt_len, char_u *seed, int seed_len); |
Bram Moolenaar | ef26954 | 2016-01-19 13:22:12 +0100 | [diff] [blame] | 5 | int blowfish_self_test(void); |
Bram Moolenaar | 40e6a71 | 2010-05-16 22:32:54 +0200 | [diff] [blame] | 6 | /* vim: set ft=c : */ |