Global web icon
stackexchange.com
https://unix.stackexchange.com/questions/656205/sk…
gpg - sks-keyservers gone. What to use instead? - Unix & Linux Stack ...
Alternate public PGP key servers that support access via HKP (like SKS keyservers used to): keys.openpgp.org (based on hagrid) keyserver.ubuntu.com (based on Hockeypuck) keys.mailvelope.com (based on Mailvelope) Access via other protocols that are supported by GnuPG: LDAP: keyserver.pgp.com (based on Broadcom PGP Universal Server) Due to the fact that the SKS key servers were taken down due to ...
Global web icon
stackexchange.com
https://unix.stackexchange.com/questions/552707/ho…
How to renew an expired encryption subkey with gpg
There is (a newer?) option in gpg (2.2.41) where you can extend all your subkeys at once with only the command: gpg --quick-set-expire <1> <2> <3> meaning: <1> fingerprint of your key (from gpg --list-secret-keys) <2> how long you would like to extend the expiration period <3> optionally, the subkey fingerprints to extend ('*' to extend all non-expired subkeys) e.g.: gpg --quick-set-expire ...
Global web icon
stackexchange.com
https://unix.stackexchange.com/questions/641121/gp…
gpg unusable secret key error - Unix & Linux Stack Exchange
The usage field of that key only contains C (Certification). Without a subkey, this key can only be used to sign other keys, as it does not have the S (Sign), E (Encrypt) or A (Authenticate) usages allowed, and therefore the key is rejected when trying to use it as a signing key.
Global web icon
stackexchange.com
https://unix.stackexchange.com/questions/623375/wh…
gpg - What is the armored option for in GnuPG? - Unix & Linux Stack ...
when I export a gpg private or public key, and specify armored as a switch, I get plain text key, however, the gnupgp website seems to state that these keys are actually encrypted. What's the point...
Global web icon
stackexchange.com
https://unix.stackexchange.com/questions/740514/so…
Solving gpg: decryption failed: No secret key - Unix & Linux Stack Exchange
Then when using gpg, your ~/.gnupg directory should be backuped with as many precaution as the enciphered files. You also have the gpg --export > export and gpg --export-secret-keys > export commands to export all yours keys in a pair of files you should backup instead. But these precautions must be done before losing the disk.
Global web icon
archlinux.org
https://bbs.archlinux.org/viewtopic.php?id=306133
[SOLVED] gpg: keyserver receive failed: No route to host / Newbie ...
gpg --keyserver hkp://keyserver.ubuntu.com --recv-key F23275E4BF10AFC1DF6914A6DBD2CE893E2D1C87 gpg: keyserver receive failed: No route to host
Global web icon
stackexchange.com
https://unix.stackexchange.com/questions/613839/he…
help understanding gpg --list--keys output - Unix & Linux Stack Exchange
Your private key, which, for historical reasons*, PGP and GPG call 'secret' and which is shown by --list-secret-keys, would be even longer; in addition, showing it on a terminal where in some cases a bad person might be able to get a copy of it is extremely bad for security. How do i get my key id?
Global web icon
stackexchange.com
https://unix.stackexchange.com/questions/391344/gn…
gpg - GnuPG command to show key info from file - Unix & Linux Stack ...
Does anybody know the correct command to read a key file and show information about the key? Edit: Ideally the mechanism would be able to read the keyfile from stdin, such as cat keyfile.key | gpg --some-command I should have mentioned this earlier but so many commands for gpg work with stdin I didn't even consider it a relevant constraint.
Global web icon
stackexchange.com
https://unix.stackexchange.com/questions/481939/ho…
How to export a GPG private key and public key to a file
I have generated keys using GPG, by executing the following command gpg --gen-key Now I need to export the key pair to a file; i.e., private and public keys to private.pgp and public.pgp, respecti...
Global web icon
stackexchange.com
https://unix.stackexchange.com/questions/184947/ho…
How to import secret gpg key (copied from one machine to another)?
I'm trying to copy my gpg key from one machine to another. I do: gpg --export ${ID} > public.key gpg --export-secret-key ${ID} > private.key Move files to new machine, and then: gpg --import public.key gpg: nyckel [ID]: public key [Name, e-mail] was imported gpg: Total number of treated keys: 1 gpg: imported: 1 (RSA: 1) gpg --allow-secret-key-import private.key sec [?]/[ID] [Creation date ...