blob: 5998fb35810057fb161e42f2062426dc14bffe31 [file] [log] [blame]
Bram Moolenaar40e6a712010-05-16 22:32:54 +02001/* blowfish.c */
Bram Moolenaaref269542016-01-19 13:22:12 +01002void crypt_blowfish_encode(cryptstate_T *state, char_u *from, size_t len, char_u *to);
3void crypt_blowfish_decode(cryptstate_T *state, char_u *from, size_t len, char_u *to);
Bram Moolenaar6ee96582019-04-27 22:06:37 +02004int crypt_blowfish_init(cryptstate_T *state, char_u *key, char_u *salt, int salt_len, char_u *seed, int seed_len);
Bram Moolenaaref269542016-01-19 13:22:12 +01005int blowfish_self_test(void);
Bram Moolenaar40e6a712010-05-16 22:32:54 +02006/* vim: set ft=c : */