A tiny Go utility to generate random secure passwords right from your terminal.
- Generates strong passwords with letters, numbers, symbols and custom characters
- Super lightweight and fast
- Command-line options to customize everything
Just run:
go build./entropykey [options] -l <length> Passphrase length (default: 16)
-c <count> Passphrase count (default: 1)
-C <chars> Additional characters
-a Add alphabet characters (default true, can be disabled with -a)
-n Add number characters (default true, can be disabled with -n)
-s Add special characters (default false)
./entropykey -l 24 -c 5 -s -C "_-+="Generates 5 passwords, each 24 characters long, with special characters and some custom symbols.
Released under the MIT. See LICENSE for full details.
Made with โค๏ธ by honakac