blob: 74784e1a4791224fa6487def1e6777db5100f325 [file] [log] [blame]
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02001/* crypt_zip.c */
Bram Moolenaaref269542016-01-19 13:22:12 +01002void crypt_zip_init(cryptstate_T *state, char_u *key, char_u *salt, int salt_len, char_u *seed, int seed_len);
3void crypt_zip_encode(cryptstate_T *state, char_u *from, size_t len, char_u *to);
4void crypt_zip_decode(cryptstate_T *state, char_u *from, size_t len, char_u *to);
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02005/* vim: set ft=c : */