blob: eb29dbf760bb3a3b433c2ce901b16fef3178d9f3 [file] [log] [blame]
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02001/* crypt_zip.c */
Christian Brabandtaae58342023-04-23 17:50:22 +01002int crypt_zip_init(cryptstate_T *state, char_u *key, crypt_arg_T *arg);
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 : */