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); |
Bram Moolenaar | ef26954 | 2016-01-19 13:22:12 +0100 | [diff] [blame] | 3 | void crypt_zip_encode(cryptstate_T *state, char_u *from, size_t len, char_u *to); |
| 4 | void crypt_zip_decode(cryptstate_T *state, char_u *from, size_t len, char_u *to); |
Bram Moolenaar | 8f4ac01 | 2014-08-10 13:38:34 +0200 | [diff] [blame] | 5 | /* vim: set ft=c : */ |