Bram Moolenaar | 8f4ac01 | 2014-08-10 13:38:34 +0200 | [diff] [blame] | 1 | /* crypt_zip.c */ |
Christian Brabandt | aae5834 | 2023-04-23 17:50:22 +0100 | [diff] [blame] | 2 | int crypt_zip_init(cryptstate_T *state, char_u *key, crypt_arg_T *arg); |
Christian Brabandt | f573c6e | 2021-06-20 14:02:16 +0200 | [diff] [blame] | 3 | void crypt_zip_encode(cryptstate_T *state, char_u *from, size_t len, char_u *to, int last); |
| 4 | void crypt_zip_decode(cryptstate_T *state, char_u *from, size_t len, char_u *to, int last); |
Bram Moolenaar | 8f4ac01 | 2014-08-10 13:38:34 +0200 | [diff] [blame] | 5 | /* vim: set ft=c : */ |