blob: d959846105c600e0e9ee0b0996a32c6e2d2e5922 [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);
4void crypt_blowfish_init(cryptstate_T *state, char_u *key, char_u *salt, int salt_len, char_u *seed, int seed_len);
5int blowfish_self_test(void);
Bram Moolenaar40e6a712010-05-16 22:32:54 +02006/* vim: set ft=c : */