diff options
| author | Rose Hogenson <rosehogenson@posteo.net> | 2025-10-24 17:22:12 -0700 |
|---|---|---|
| committer | Rose Hogenson <rosehogenson@posteo.net> | 2025-10-24 17:22:12 -0700 |
| commit | 3ffa32dc180beaca6e7f9b87e47f02d4f3f03dde (patch) | |
| tree | 51d5385a1a624c5349ba25f3a62fe77621085d53 | |
| parent | 22300a4ed7e0d36c2fd749df2e70ed3f3bfff1c7 (diff) | |
| download | sym-3ffa32dc180beaca6e7f9b87e47f02d4f3f03dde.tar.zst | |
Add a little godoc
| -rw-r--r-- | sym.go | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -1,3 +1,10 @@ +// The sym command encrypts or decrypts files with a password. +// +// Sym has two subcommands, enc and dec, which perform encryption and +// decryption. The encryption key is derived from the user's password using +// argon2, and the data is then encrypted using AES-256 in chunks of 1MiB. +// +// Run sym -h for detailed usage information. package main import ( |
