gnupg Questions
2
Solved
When I try to add a GPG key that uses my GitHub provided commit email address, it gives me an error that the email address is "Unverified." How should I fix this?
I followed the guide on ...
Amylene asked 8/8, 2020 at 17:46
4
Solved
I am trying to get a better understanding of what is going on with gpg.
If you have a file and sign it: gpg --sign file.txt
you can verify it with: gpg --verify file.txt.gpg
when you get a succ...
5
Solved
When I want to squash some commits by interactive rebase:
git rebase -i HEAD~3
And then:
pick cbd03e3 Final commit (signed)
s f522f5d bla-bla-bla (signed)
s 09a7b7c bla-bla (signed)
# Rebase c...
Circle asked 18/9, 2013 at 14:0
5
Solved
I am trying to push my staging repository on oss.sonatype.org to central repository, but this action is getting failed and i am getting following exception
Event: Failed: Signature Validation
type...
3
Solved
Recently tried to update emacs packages and got this.
Failed to verify signature archive-contents.sig:
No public key for 066DAFCB81E42C40 created at 2019-10-02T10:10:02+0100 using RSA
Command outp...
2
Solved
According to git you can now sign your commits using your existing ssh key.
https://github.blog/2021-11-15-highlights-from-git-2-34/#tidbits
Following that: https://unix.stackexchange.com/questions...
2
Solved
I have ubuntu 20.04 machine and installed gpg and related tools using below commad
sudo apt install gpg gnupg gnupg-pkcs11-scd
But when i run gpg --card-status, I get below error
gpg: selecting car...
Multifold asked 4/10, 2021 at 7:44
3
Solved
Currently, I use 2 emails, (Personal + Company) with one SSH key to log in to GitHub. But I use the same GPG key for signing. Both are verified on my GitHub Email Settings page.
On the first one (p...
Drabeck asked 4/5, 2021 at 8:6
2
Solved
I'm running a self-hosted Renovate instance and I need to sign the commits to GitLab with GPG key.
For this I'm setting the env variable RENOVATE_GIT_PRIVATE_KEY with the PGP private key block for ...
3
Solved
Yesterday I tried to install a ruby or update rvm on Ubuntu, today on mac os, and I failed in the same place on both:
$ rvm get head
Downloading https://get.rvm.io
Downloading https://raw.githubus...
Botch asked 25/1, 2019 at 14:24
4
Solved
I'm trying to decrypt a file using gpg and getting this error:
$ gpg --no-tty --batch --verbose --decrypt --passphrase foo file.enc
Version: GnuPG v1.4.11 (GNU/Linux)
gpg: armor header:
gpg: CAST...
Grijalva asked 19/5, 2015 at 6:17
2
Solved
I am trying to publish my Java Library to Maven Central. A part of this involves using the signing gradle plugin to sign the artifacts. I need to sign it without using the keyring file as document ...
Baccy asked 13/9, 2019 at 9:53
4
Solved
Below is an exported public gpg key generated by gpg --armor --export [email protected] (email taken from gpg man ;) )
How can I get the expiration date from that key? Is there available open...
Ruffle asked 21/2, 2018 at 19:52
10
I am not able to decrypt my file without secret key. I know this question is asked on this before, solutions on this question did not help me.
This is my problem's scenario.
This error I receive on...
Irfan asked 20/4, 2017 at 8:11
2
I created a nice long passphrase, used it a few times, then forgot it ;) The twist is, I know the general theme and probably almost all of the characters. The perfectionist in me doesn't want to re...
6
Solved
I'm trying to enable commit signing on OS X Mojave.
git commit -S -am "Test"
The error is:
error: gpg failed to sign the data
fatal: failed to write commit object
What I tried:
gpg works fi...
Reavis asked 7/3, 2019 at 6:47
8
Solved
I try to decrypt file using following command:
gpg --output file.txt --decrypt file.pgp
File is decrypted successfully but i get an error:
"gpg: Can't check signature: public key not found"
...
Griffith asked 1/8, 2014 at 7:16
5
Solved
I am trying to do a maven deploy via GitHub actions and i am getting the below error:-
gpg: directory '/home/runner/.gnupg' created
gpg: keybox '/home/runner/.gnupg/pubring.kbx' created
gpg: no de...
Phytogenesis asked 8/4, 2020 at 8:33
9
Solved
I installed GPG from brew.
brew install gpg
It is gnupg2-2.0.30_2.
When I commit, I do get a error message:
You need a passphrase to unlock the secret key for
user: "Max Mustermann (mycomment)...
2
I'm trying to delete these gpg keys I no longer needed. I keep getting "not found: Not found" regardless.
I tried:
gpg --list-scret-keys
There is no error but nothing shows up on the sc...
Imbrication asked 9/8, 2022 at 14:7
2
Solved
I was trying to sign my commits with the command git commit -S but it fails without prompting my passphrase for my GPG key.
The error is:
error: gpg failed to sign the data
fatal: failed to write...
2
Solved
When I activate a virtual environment via poetry shell, GPG signing gets messed up because $GPG_TTY is set for the parent shell. So every time I use poetry shell I have to do GPG_TTY=$(tty). Is the...
Notochord asked 15/4, 2021 at 10:44
5
Solved
If I set my Git to sign with my GPG key it fails. I've tried GIT_TRACE and it doesn't really give me any more info:
$ GIT_TRACE=1 git commit
15:29:35.112157 git.c:344 trace: built-in: git 'commit'...
5
I want to use BouncyCastle for GnuPG encryption (want to get .gpg file) in android. But I am getting this error.(Unsupported class file major version 59.
Failed to transform bcprov-jdk15on-1.67.jar...
Coarse asked 7/12, 2020 at 13:50
9
Solved
I have a copy of the postgresql apt repository gpg key and would like to view the details of the gpg key as it comes in the file. Is this possible without importing it into a key ring?
© 2022 - 2024 — McMap. All rights reserved.