blob: 6b2c45459a705b09701296176f76472758ecb227 [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);
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 : */