blob: 868b131f0f2e67778f287d77d23c77468cc6348a [file] [log] [blame]
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02001/* crypt_zip.c */
Bram Moolenaar6ee96582019-04-27 22:06:37 +02002int crypt_zip_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 +01003void 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 : */