Mercurial > vim
view src/proto/crypt_zip.pro @ 24104:c4e9c88bf4be v8.2.2593
patch 8.2.2593: list of distributed files is incomplete
Commit: https://github.com/vim/vim/commit/0de8e2d6a3fae61c4d9dfdd6f16fc5040d994f6c
Author: Bram Moolenaar <Bram@vim.org>
Date: Sat Mar 13 13:30:03 2021 +0100
patch 8.2.2593: list of distributed files is incomplete
Problem: List of distributed files is incomplete.
Solution: Add a file and rename another.
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sat, 13 Mar 2021 13:45:03 +0100 |
parents | a1229400434a |
children | 7e9e53a0368f |
line wrap: on
line source
/* crypt_zip.c */ int crypt_zip_init(cryptstate_T *state, char_u *key, char_u *salt, int salt_len, char_u *seed, int seed_len); void crypt_zip_encode(cryptstate_T *state, char_u *from, size_t len, char_u *to); void crypt_zip_decode(cryptstate_T *state, char_u *from, size_t len, char_u *to); /* vim: set ft=c : */