summaryrefslogtreecommitdiffstats
path: root/runtime
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2018-12-16 18:20:00 +0100
committerBram Moolenaar <Bram@vim.org>2018-12-16 18:20:00 +0100
commita86187b9cd529754ad85cd621169876317eb3a69 (patch)
treef8ed8bc8a666c1065a8aea6cf11a97531b658fe1 /runtime
parent6403bcdaf4dc36c0445a539a37510534ef87ca24 (diff)
patch 8.1.0606: 'cryptmethod' defaults to a very old methodv8.1.0606
Problem: 'cryptmethod' defaults to a very old method. Solution: Default to "blowfish2", it is now widely available.
Diffstat (limited to 'runtime')
-rw-r--r--runtime/doc/options.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/runtime/doc/options.txt b/runtime/doc/options.txt
index b5278f16ba..177a5699cb 100644
--- a/runtime/doc/options.txt
+++ b/runtime/doc/options.txt
@@ -2370,7 +2370,7 @@ A jump table for the options with a short description can be found at |Q_op|.
*'cryptmethod'* *'cm'*
-'cryptmethod' 'cm' string (default "zip")
+'cryptmethod' 'cm' string (default "blowfish2")
global or local to buffer |global-local|
{not in Vi}
Method used for encryption when the buffer is written to a file:
@@ -2401,8 +2401,8 @@ A jump table for the options with a short description can be found at |Q_op|.
modifications. Also see |:X|.
When setting the global value to an empty string, it will end up with
- the value "zip". When setting the local value to an empty string the
- buffer will use the global value.
+ the value "blowfish2". When setting the local value to an empty
+ string the buffer will use the global value.
When a new encryption method is added in a later version of Vim, and
the current version does not recognize it, you will get *E821* .