diff options
author | Springfield Data Recovery <42523184+springfielddatarecovery@users.noreply.github.com> | 2023-07-23 00:13:03 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-23 09:13:03 +0200 |
commit | f037dae413b58d1496ea3e0781362ad45e74c9f4 (patch) | |
tree | afa5470b72db6f8db80da732a35729449255dc66 | |
parent | fa6359d42438814af7afbb23a30fc6afce3a0a5a (diff) | |
download | VeraCrypt-f037dae413b58d1496ea3e0781362ad45e74c9f4.tar.gz VeraCrypt-f037dae413b58d1496ea3e0781362ad45e74c9f4.zip |
Update UserInterface.cpp (#1155)
Docs specify cascading encryption should be specified as "AES(Twofish)" but on Linux it requires "AES-Twofish".
-rw-r--r-- | src/Main/UserInterface.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Main/UserInterface.cpp b/src/Main/UserInterface.cpp index c2e95f7e..05f254ea 100644 --- a/src/Main/UserInterface.cpp +++ b/src/Main/UserInterface.cpp @@ -1211,7 +1211,7 @@ namespace VeraCrypt " Display password characters while typing.\n" "\n" "--encryption=ENCRYPTION_ALGORITHM\n" - " Use specified encryption algorithm when creating a new volume.\n" + " Use specified encryption algorithm when creating a new volume. When cascasing algorithms, they must be seperated by a dash. For example: AES-Twofish. \n" "\n" "--filesystem=TYPE\n" " Filesystem type to mount. The TYPE argument is passed to mount(8) command\n" |