blob: 626d9855bf16985d081d065bcacb76ba6010a903 [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);
Christian Brabandtf573c6e2021-06-20 14:02:16 +02003void crypt_zip_encode(cryptstate_T *state, char_u *from, size_t len, char_u *to, int last);
4void crypt_zip_decode(cryptstate_T *state, char_u *from, size_t len, char_u *to, int last);
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02005/* vim: set ft=c : */