Disable keyring when using symmetric crypto
This commit is contained in:
parent
9efc5d82bf
commit
3d90c4ab16
1 changed files with 2 additions and 1 deletions
|
@ -177,7 +177,8 @@ CLEARSIGN()
|
|||
DECRYPT()
|
||||
{
|
||||
(printf "%s" "$MASTERKEY" | \
|
||||
gpg -q --batch --passphrase-fd 0 --output - -d /dev/fd/3) 3<&0
|
||||
gpg -q --batch --no-default-keyring --keyring /dev/null \
|
||||
--passphrase-fd 0 --output - -d /dev/fd/3) 3<&0
|
||||
}
|
||||
|
||||
# Append $2 to $1 with a newline separator
|
||||
|
|
Loading…
Reference in a new issue