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); |
Christian Brabandt | aae5834 | 2023-04-23 17:50:22 +0100 | [diff] [blame] | 4 | int crypt_blowfish_init(cryptstate_T *state, char_u *key, crypt_arg_T *arg); |
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 : */ |