Skip to content
Advertisement

Tag: gnupg

where can I find mysql-apt-config_0.8.13-1_all.deb.asc

I have issue with install mysql-apt-config_0.8.13-1_all.deb in Debian 9 but I have apt-key issue. I find that I can use Signature Checking Using GnuPG I find the PGP SIGNATURE but i can’t find the mysql-apt-config_0.8.13-1_all.deb.asc how can I find it to do gpg –verify package_name.asc. Answer Use the newest MySQL apt repository mysql-apt-config_0.8.22-1_all.deb. You can download the file.asc from MySQL

Is it possible to export a GPG private key without passphrase being provided in a prompt?

I would like to automate a GPG private key export so it runs without user interaction. I tried providing –batch –passphrase-fd 0 arguments both with passphrase being passsed as: an argument –passphrase ‘my-passhrase’ from stdin echo ‘my-passphrase’ | gpg … It didn’t work. Is it even possible to export private keys without user interaction? Answer You should add –pinentry-mode=loopback parameter,

How do I pass –homedir to git when signing using GPG?

I have a custom location where I have my GPG keys, which is different from the default ~/.gnupg directory. I need to sign a git commit using GPG, but I can’t find any option to specify the custom location to Git: it always searches in the default one. Is there an option for this? I tried modifying: program = /usr/bin/gpg

Advertisement