Questions tagged [gpg-signature]
127 questions
2
votes
1 answer
How to link gpg key to launchpad
I have followed the link
https://askubuntu.com/questions/100281/how-do-i-make-a-pgp-key to generate my gpg key now i want to add key to my launchpad.
I got a mail from launchpad upon adding my key fingerprint and the mail shows something like this…

user3398900
- 795
- 2
- 13
- 31
2
votes
1 answer
Error while trying to automatically sign files with GPG using maven
I'm trying to deploy my project to the maven central repository but i can't resolve problem with Error:Sources Validation.
I've installed gpg and went through the instructions:
Adding a GPG key and Apache Maven signed components
When i try to run…

Nikita Ryanov
- 1,520
- 3
- 17
- 34
2
votes
1 answer
Get key from hkp server but failed because "unknown pubkey algorithm"
My system is Ubuntu 16.04.
When I ran
apt-get update
it failed with following error:
the following signatures couldn't be verified because the public key is not available: NO_PUBKEY 1C52189C923F6CA9
so I ran:
sudo apt-key adv --keyserver…

njuyuanrui
- 133
- 2
- 7
2
votes
1 answer
Intellij IDEA signing GIT commits with GPG
GPG signing of GIT commits works in terminal but not in Intellij Idea.
gpg failed to sign the data fatal: failed to write commit object

ayurchuk
- 1,879
- 1
- 17
- 13
2
votes
1 answer
GPG error when using 'stack upload'
When I run stack upload I get an error:
Environment variable GPG_TTY is not set (see man gpg-agent)
Unable to find gpg2 or gpg executable
The upload appears to succeed, but the error concerns me.
What are the consequences of this error? Is there a…

orome
- 45,163
- 57
- 202
- 418
1
vote
1 answer
How to use Python's regex to match a GPG signature?
I am trying to see if I can match the gpgsig using the regex below, but ran into an error also shown below.
Is there any guidance on how to fix it?
import re
if __name__ == '__main__':
log = '''
tree…

user3508811
- 847
- 4
- 19
- 43
1
vote
0 answers
Using Yubikey to sign
I am trying to use my Yubikey to sign git commits.
I was able to create a master key with three subkeys (authentication, signing and encryption).
After I created the subkeys I moved them to my new yubikey. So on the computer I created the keys…

pepsilon
- 15
- 4
1
vote
1 answer
Is there a way to sign all commits that are specific to a branch?
I've read the wonderful replies to this post.
There is one answer with interactive rebase and exec that lets you sign all commit up to the one specified (excluding) or from the start using --root.
However I don't want to sign every commits since…

Triup Lauro
- 11
- 3
1
vote
1 answer
Terraform Cloud private provider registry authentication signature from unknown issuer
We are trying to leverage the Terraform Cloud private provider registry to consume custom providers within our org away from public view. However, after following all of the gpg upload steps, version creation, platform creation and upload for the…

Devon Harris
- 11
- 1
1
vote
1 answer
How can I stop git from use of GUI PGP key manager when signing a commit?
I am working in terminal via ssh. When I commit, I am asked for a password to unlock my private key. As long as I have no graphical session running everything works as expected.
The problem is that when I have an graphical session running (XFCE),…

abukaj
- 2,582
- 1
- 22
- 45
1
vote
1 answer
Cannot sign commit with exported GPG key from other machine
I need help with gpg key in git.
First I export keys from windows with this:
gpg --output backupkeys.pgp --armor --export-secret-keys --export-options export-backup user@email
Then on linux I import this key
gpg --import backupkeys.pgp
and change…

ERROR_404
- 25
- 4
1
vote
2 answers
Seeing "this user has not yet uploaded their public key" in git commits, but my gpg key is uploaded
I'm currently seeing this message near my Git commits, even though I'm signing them using "git commit -S":
When I check Settings > SSH and GPG Keys, I see the same GPG key Id (see below).
When I run $git config --global user.signingkey, I get the…

WEFX
- 8,298
- 8
- 66
- 102
1
vote
1 answer
Disable GPG signature check for repo init (and/or for git)
I'm trying to setup an AOSP repository with the repo init command, however I get a signature checking error (I edited out all the actual names and object IDs):
repo: error: "git" failed with exit status 1
cwd: /aoap/.repo/repo
cmd: ['git',…

lornova
- 6,667
- 9
- 47
- 74
1
vote
0 answers
Why check the signature of tgz files
Sometimes when I download a compressed tgz file from a repo to build from source, I see this sentence
Foo is gpg-signed, you should check the signature by downloading the accompanying sig file and do gpg --verify foo.tgz.sig.
The question is why…

Masoud Ghaderi
- 437
- 5
- 16
1
vote
2 answers
How to check if gpg --verify output contain certain string in it using shell?
When I execute the following command I get an output like this:
$ gpg --verify awscliv2.deb
gpg: Signature made Mon Nov 4 19:00:01 2019 PST
gpg: using RSA key FB5D B77F D5C1 18B8 0511 ADA8 A631 0ACC 4672 475C
gpg: Good signature from "AWS CLI Team…

Sourav Bhattacharjee
- 328
- 1
- 4
- 20