summaryrefslogtreecommitdiff
path: root/git-signify
blob: faaebf32949ca2426d84257a588d2846e03f396a020afcec6ee25366e0117998 (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
#!/bin/sh
# git-signify [GIT COMMAND] - use git with signify(1)
#
# First, you need to set the signing key for the repo, e.g.
#   git config --local user.signingKey ~/.signify/cwm
# This will use cwm.sec and cwm.pub.
#
# Then you can use
#   gpg signify commit -S
#   gpg signify verify-commit
#
#   gpg signify tag -s
#   gpg signify verify-tag
#
# You also can set this script as "gpg.program" to use signify
# automatically.
#
# To the extent possible under law, Leah Neukirchen has waived
# all copyright and related or neighboring rights to this work.
# http://creativecommons.org/publicdomain/zero/1.0/

getkey() {
	key=$(git config user.signingKey)
	if [ -z "$key" ]; then
		echo "git-signify: no user.signingKey defined!" 1>&2
		exit 7
	fi
}

while :; do
case "$1" in
-bsau)
	getkey
	echo "-----BEGIN PGP SIGNATURE----- (really git-signify)"
	{
		signify -S -s "$key.sec" -m - -x -
		if [ $? -eq 0 ] && [ -n "$statusfd" ]; then
			printf '\n[GNUPG:] SIG_CREATED ' >/dev/fd/$statusfd
		fi
	} | sed "s/: .*/: verify with git-signify and ${key##*/}.pub/"
	echo "-----END PGP SIGNATURE-----"
	exit 0
	;;
--verify)
	getkey
	sed -i '/-----.* PGP SIGNATURE-----/d' "$2"
	if signify -V -p "$key.pub" -m - -x "$2" 1>&2; then
		echo "[GNUPG:] GOODSIG "
		exit 0
	else
		r=$?
		echo "[GNUPG:] BADSIG "
		exit $r
	fi
	;;
--status-fd=*)
	statusfd=${1#--status-fd=}
	shift
	;;
--*)
	# ignore all other arguments
	shift
	;;
*)
	exec git -c "gpg.program=$0" "$@"
	;;
esac
done