From 3ffa32dc180beaca6e7f9b87e47f02d4f3f03dde Mon Sep 17 00:00:00 2001 From: Rose Hogenson Date: Fri, 24 Oct 2025 17:22:12 -0700 Subject: Add a little godoc --- sym.go | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/sym.go b/sym.go index c83ecbc..b726562 100644 --- a/sym.go +++ b/sym.go @@ -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 ( -- cgit v1.3.1