1
0
Fork 0
cryptsetup/debian/scripts/decrypt_gnupg
Daniel Baumann 74b680e410
Adding debian version 2:2.7.5-2.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-21 10:45:48 +02:00

26 lines
543 B
Bash

#!/bin/sh
decrypt_gpg () {
echo "Performing GPG symmetric decryption ..." >&2
if ! /lib/cryptsetup/askpass "Enter passphrase for key $1: " | \
/usr/bin/gpg -q --batch --no-options \
--no-random-seed-file --no-default-keyring \
--keyring /dev/null \
--trustdb-name /dev/null --passphrase-fd 0 --decrypt -- "$1"; then
return 1
fi
return 0
}
if [ ! -x /usr/bin/gpg ]; then
echo "$0: /usr/bin/gpg is not available" >&2
exit 1
fi
if [ -z "$1" ]; then
echo "$0: missing key as argument" >&2
exit 1
fi
decrypt_gpg "$1"
exit $?