blob: fbaa3dc594d2fd09a34cc971468ebc5eb34733f5 [file] [log] [blame]
Bram Moolenaar40e6a712010-05-16 22:32:54 +02001/* blowfish.c */
Christian Brabandtf573c6e2021-06-20 14:02:16 +02002void crypt_blowfish_encode(cryptstate_T *state, char_u *from, size_t len, char_u *to, int last);
3void crypt_blowfish_decode(cryptstate_T *state, char_u *from, size_t len, char_u *to, int last);
Christian Brabandtaae58342023-04-23 17:50:22 +01004int crypt_blowfish_init(cryptstate_T *state, char_u *key, crypt_arg_T *arg);
Bram Moolenaaref269542016-01-19 13:22:12 +01005int blowfish_self_test(void);
Bram Moolenaar40e6a712010-05-16 22:32:54 +02006/* vim: set ft=c : */