mirror of
https://github.com/vim/vim.git
synced 2025-09-23 03:43:49 -04:00
patch 8.2.3022: available encryption methods are not strong enough
Problem: Available encryption methods are not strong enough. Solution: Add initial support for xchaha20. (Christian Brabandt, closes #8394)
This commit is contained in:
committed by
Bram Moolenaar
parent
208f0b48b2
commit
f573c6e1ed
@@ -2513,11 +2513,12 @@ typedef struct {
|
||||
# define CRYPT_M_ZIP 0
|
||||
# define CRYPT_M_BF 1
|
||||
# define CRYPT_M_BF2 2
|
||||
# define CRYPT_M_COUNT 3 // number of crypt methods
|
||||
# define CRYPT_M_SOD 3
|
||||
# define CRYPT_M_COUNT 4 // number of crypt methods
|
||||
|
||||
// Currently all crypt methods work inplace. If one is added that isn't then
|
||||
// define this.
|
||||
// # define CRYPT_NOT_INPLACE 1
|
||||
# define CRYPT_NOT_INPLACE 1
|
||||
#endif
|
||||
|
||||
#ifdef FEAT_PROP_POPUP
|
||||
|
Reference in New Issue
Block a user