blob: 66d029cd89990988e7b555fc5555e6c16ec4d9b5 [file] [log] [blame]
Bram Moolenaar40e6a712010-05-16 22:32:54 +02001/* blowfish.c */
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02002void crypt_blowfish_encode __ARGS((cryptstate_T *state, char_u *from, size_t len, char_u *to));
3void crypt_blowfish_decode __ARGS((cryptstate_T *state, char_u *from, size_t len, char_u *to));
4void crypt_blowfish_init __ARGS((cryptstate_T *state, char_u *key, char_u *salt, int salt_len, char_u *seed, int seed_len));
Bram Moolenaar40e6a712010-05-16 22:32:54 +02005int blowfish_self_test __ARGS((void));
6/* vim: set ft=c : */