annotate src/proto/crypt_zip.pro @ 35184:0a80fe1a9125 default tip

runtime(doc): clarify {special} argument for shellescape() Commit: https://github.com/vim/vim/commit/5faeb60480c6efba5c0468c01275120b6ace5a09 Author: Enno <Konfekt@users.noreply.github.com> Date: Wed May 15 21:54:19 2024 +0200 runtime(doc): clarify {special} argument for shellescape() closes: https://github.com/vim/vim/issues/14770 Signed-off-by: Enno <Konfekt@users.noreply.github.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
author Christian Brabandt <cb@256bit.org>
date Wed, 15 May 2024 22:00:04 +0200
parents 3d4e28569a6d
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
6122
18ac55444b37 updated for version 7.4.399
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
1 /* crypt_zip.c */
32299
3d4e28569a6d patch 9.0.1481: decrypting with libsodium may fail if the library changes
Bram Moolenaar <Bram@vim.org>
parents: 24970
diff changeset
2 int crypt_zip_init(cryptstate_T *state, char_u *key, crypt_arg_T *arg);
24970
7e9e53a0368f patch 8.2.3022: available encryption methods are not strong enough
Bram Moolenaar <Bram@vim.org>
parents: 16429
diff changeset
3 void crypt_zip_encode(cryptstate_T *state, char_u *from, size_t len, char_u *to, int last);
7e9e53a0368f patch 8.2.3022: available encryption methods are not strong enough
Bram Moolenaar <Bram@vim.org>
parents: 16429
diff changeset
4 void crypt_zip_decode(cryptstate_T *state, char_u *from, size_t len, char_u *to, int last);
6122
18ac55444b37 updated for version 7.4.399
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
5 /* vim: set ft=c : */