You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Providing the secret via stdin has the advantage of not needing to store the secret
in cleartext somewhere on the filesystem.
Instead it can be decrypted on the fly and provided via stdin.
A few examples:
gpg -d singkey.gpg | contrib/sign-release.sh v2.2.1
age -d -i ~/.ssh/id_ed25519 signkey.age | ./contrib/sign-release.sh v2.2.1
gopass show signkey | ./contrib/sign-release.sh v2.2.1
keepassxc-cli show -k ~/db.key ~/db.kdbx signkey -a Password | contrib/sign-release.sh v2.2.1
0 commit comments