comparison src/crypt.c @ 16378:3d6b282e2d6e v8.1.1194

patch 8.1.1194: typos and small problems in source files commit https://github.com/vim/vim/commit/ad3ec76bb8030b9a1d3f0a49c374d0de2383b977 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Apr 21 00:00:13 2019 +0200 patch 8.1.1194: typos and small problems in source files Problem: Typos and small problems in source files. Solution: Small fixes.
author Bram Moolenaar <Bram@vim.org>
date Sun, 21 Apr 2019 00:15:05 +0200
parents ddd82b1c9e9d
children a1229400434a
comparison
equal deleted inserted replaced
16377:b79321679d79 16378:3d6b282e2d6e
40 int whole_undofile; /* whole undo file is encrypted */ 40 int whole_undofile; /* whole undo file is encrypted */
41 41
42 /* Optional function pointer for a self-test. */ 42 /* Optional function pointer for a self-test. */
43 int (* self_test_fn)(); 43 int (* self_test_fn)();
44 44
45 // Function pointer for initializing encryption/description. 45 // Function pointer for initializing encryption/decryption.
46 void (* init_fn)(cryptstate_T *state, char_u *key, 46 void (* init_fn)(cryptstate_T *state, char_u *key,
47 char_u *salt, int salt_len, char_u *seed, int seed_len); 47 char_u *salt, int salt_len, char_u *seed, int seed_len);
48 48
49 /* Function pointers for encoding/decoding from one buffer into another. 49 /* Function pointers for encoding/decoding from one buffer into another.
50 * Optional, however, these or the _buffer ones should be configured. */ 50 * Optional, however, these or the _buffer ones should be configured. */