-
Notifications
You must be signed in to change notification settings - Fork 0
/
pazzz.go
46 lines (37 loc) · 1.14 KB
/
pazzz.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
package main
const (
name = "pazzz"
version = "0.1.0"
)
const usage = `Pazzz is a stateless unix password manager.
Usage:
pazzz [flags] [login] [site]
Arguments:
login str
login that you will use with password.
site str
site that you will use generated password with.
The flags are:
-len n
length of password. cannot be bigger than 32.
Default value is 8. You can override it with
"PAZZZLEN" environment variable.
-secret str
secret to generate password from. You can also use
"PAZZZSECRET" environment variable to set secret.
Do no share your secret with anyone.
-d
include digits in password.
-l
include lowercase letters in password.
-u
include uppercase letters in password.
-s
include symbols in password.
-v
prints pazzz version to stdout.
-h
prints this message to stdout.
Check out github.com/thinkofher/pazzz for more information.
Author: Beniamin Dudek <beniamin.dudek@yahoo.com>.
`