Bram Moolenaar | 8f4ac01 | 2014-08-10 13:38:34 +0200 | [diff] [blame] | 1 | /* crypt_zip.c */ |
Bram Moolenaar | 6ee9658 | 2019-04-27 22:06:37 +0200 | [diff] [blame] | 2 | int crypt_zip_init(cryptstate_T *state, char_u *key, char_u *salt, int salt_len, char_u *seed, int seed_len); |
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 : */ |