blob: 4730133bf3266b081f24dc6e9ae6216fcd4fbc09 (
plain)
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
|
#!/bin/bash
umask 077
PREFIX="$HOME/.password-store"
ID="$PREFIX/.gpg-id"
usage() {
cat <<_EOF
Password Store
by Jason Donenfeld
Jason@zx2c4.com
Usage:
$0 --init gpg-id
Initialize new password storage and use gpg-id for encryption.
$0 [--ls]
List passwords.
$0 pass-name
Show existing password.
$0 --insert [--multiline] pass-name
Insert new optionally multiline password.
$0 --generate [--no-symbols] pass-name pass-length
Generate a new password of pass-length with optionally no symbols.
$0 --remove pass-name
Remove existing password.
$0 --help
Show this text.
_EOF
}
if [[ $1 == "--init" ]]; then
if [[ $# -ne 2 ]]; then
echo "Usage: $0 $1 gpg-id"
exit 1
fi
mkdir -v -p "$PREFIX"
echo "$2" > "$ID"
echo "Password store initialized for $2."
exit 0
elif [[ $1 == "--help" ]]; then
usage
exit 0
fi
if ! [[ -f $ID ]]; then
echo "You must run:"
echo " $0 --init your-gpg-id"
echo "before you may use the password store."
echo
usage
exit 1
else
ID="$(head -n 1 "$ID")"
fi
if [[ $# -eq 0 ]] || [[ $1 == "--ls" ]]; then
tree "$PREFIX" | tail -n +2 | head -n -2 | sed 's/\(.*\)\.gpg$/\1/';
elif [[ $1 == "--insert" ]]; then
if [[ $# -lt 2 ]]; then
echo "Usage: $0 $1 [--multiline] pass-name"
exit 1
fi
ml=0
if [[ $2 == "--multiline" ]]; then
shift
ml=1
fi
mkdir -p -v "$PREFIX/$(dirname "$2")"
if [[ $ml -eq 0 ]]; then
echo -n "Enter password for $2: "
head -n 1 | gpg -e -r "$ID" > "$PREFIX/$2.gpg"
else
echo "Enter contents of $2 and press Ctrl+D when finished:"
echo
cat | gpg -e -r "$ID" > "$PREFIX/$2.gpg"
fi
elif [[ $1 == "--generate" ]]; then
if [[ $# -lt 3 ]]; then
echo "Usage: $0 $1 [--no-symbols] pass-name pass-length"
exit 1
fi
symbols="-y"
if [[ $2 == "--no-symbols" ]]; then
symbols=""
shift
fi
if ! [[ $3 =~ ^[0-9]+$ ]]; then
echo "pass-length \"$3\" must be a number."
exit 1
fi
mkdir -p -v "$PREFIX/$(dirname "$2")"
pass="$(pwgen -s $symbols $3 1)"
echo $pass | gpg -e -r "$ID" > "$PREFIX/$2.gpg"
echo "The generated password to $2 is:"
echo "$pass"
elif [[ $1 == "--remove" ]]; then
if [[ $# -ne 2 ]]; then
echo "Usage: $0 $1 pass-name"
exit
fi
passfile="$PREFIX/$2.gpg"
if ! [[ -f $passfile ]]; then
echo "$2 is not in the password store."
exit 1
fi
rm -i -v "$passfile"
elif [[ $# -eq 1 ]]; then
passfile="$PREFIX/$1.gpg"
if ! [[ -f $passfile ]]; then
echo "$1 is not in the password store."
exit 1
fi
exec gpg -q -d "$passfile"
else
usage
exit 1
fi
|