Command line password generator

@clewis clewis authored on 14 Dec 2023
.gitignore fixed retaining state by adding "make-random-state t" in random command 1 year ago
README.md fixed retaining state by adding "make-random-state t" in random command 1 year ago
package.lisp initial commit 1 year ago
pwg.asd initial commit 1 year ago
pwg.lisp fixed retaining state by adding "make-random-state t" in random command 1 year ago
README.md

pwg

Generate random passwords

To run:
$> pwg
will return a random password with default length of 8

$> pwg [positive integer]
will return a random password with length of [positive integer] given as a parameter

To create a standalone executable:

$> sbcl

  • (ql:quickload :pwg)

  • (in-package :pwg)

  • (sb-ext:save-lisp-and-die "pwg" :toplevel #'main :executable t :compression 9)