From ad2904f9ed84225150c45037c00ca5e6b767e63f Mon Sep 17 00:00:00 2001 From: Jakob Unterwurzacher Date: Sat, 19 Mar 2022 15:18:39 +0100 Subject: [PATCH] MANPAGE: document that -scryptn also applies to -passwd Closes https://github.com/rfjakob/gocryptfs/issues/646 --- Documentation/MANPAGE.md | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/Documentation/MANPAGE.md b/Documentation/MANPAGE.md index 8f65db8..998c8e0 100644 --- a/Documentation/MANPAGE.md +++ b/Documentation/MANPAGE.md @@ -157,14 +157,6 @@ mounted using gocryptfs v1.2 and higher. Default true. Reverse mode shows a read-only encrypted view of a plaintext directory. Implies "-aessiv". -#### -scryptn int -scrypt cost parameter expressed as scryptn=log2(N). Possible values are -10 to 28, representing N=2^10 to N=2^28. - -Setting this to a lower -value speeds up mounting and reduces its memory needs, but makes -the password susceptible to brute-force attacks. The default is 16. - #### -xchacha Use XChaCha20-Poly1305 file content encryption. This should be much faster than AES-GCM on CPUs that lack AES acceleration. @@ -569,6 +561,16 @@ Quiet - silence informational messages. Applies to: all actions. +#### -scryptn int +scrypt cost parameter expressed as scryptn=log2(N). Possible values are +10 to 28, representing N=2^10 to N=2^28. + +Setting this to a lower +value speeds up mounting and reduces its memory needs, but makes +the password susceptible to brute-force attacks. The default is 16. + +Applies to: `-init`, `-passwd` + #### -trace string Write execution trace to file. View the trace using "go tool trace FILE".