diff options
author | Frank Denis | 2025-03-12 00:32:04 +0100 |
---|---|---|
committer | Jakob Unterwurzacher | 2025-03-12 20:43:23 +0100 |
commit | 3e852eb354f99fb95b399c68d950298b33ed88ab (patch) | |
tree | 6218e3b655e5ebf778c026b9dee5b1fe3f306950 /gocryptfs-xray | |
parent | e9d6fb4b3f16d04fa56a66acad46eafad4f8aba1 (diff) |
Do what @rfjakob asked me to do
Diffstat (limited to 'gocryptfs-xray')
-rw-r--r-- | gocryptfs-xray/xray_main.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gocryptfs-xray/xray_main.go b/gocryptfs-xray/xray_main.go index efba752..2e90501 100644 --- a/gocryptfs-xray/xray_main.go +++ b/gocryptfs-xray/xray_main.go @@ -95,7 +95,7 @@ func main() { args.sep0 = flag.Bool("0", false, "Use \\0 instead of \\n as separator") args.aessiv = flag.Bool("aessiv", false, "Assume AES-SIV mode instead of AES-GCM") args.xchacha = flag.Bool("xchacha", false, "Assume XChaCha20-Poly1305 mode instead of AES-GCM") - args.aegis = flag.Bool("aegis", false, "Assume AEGIS mode instead of AES-GCM") + args.aegis = flag.Bool("aegis", false, "Assume AEGIS-256X2 mode instead of AES-GCM") args.fido2 = flag.String("fido2", "", "Protect the masterkey using a FIDO2 token instead of a password") args.version = flag.Bool("version", false, "Print version information") |