
gpg - What is the armored option for in GnuPG? - Unix & Linux …
Dec 8, 2020 · PGP (including GPG) 'armoring' is not encryption.Encryption prevents unauthorized use of data (formally, provides confidentiality) by making it unreadable in a way that can only …
gpg - sks-keyservers gone. What to use instead? - Unix & Linux …
Jun 28, 2021 · Alternate public PGP key servers that support access via HKP (like SKS keyservers used to): keys.openpgp.org (based on hagrid)
gpg - GnuPG command to show key info from file - Unix & Linux …
For newer versions: gpg --show-keys my-local-key.asc From the man page:--show-keys. This commands takes OpenPGP keys as input and prints information about them in the same way …
gpg - Encrypt and sign with specific secret key - Unix & Linux …
Dec 6, 2014 · gpg -s --default-key DEADBEE5 input > output and check afterwards with . gpg -d < output | head -1 From the gpg man page( --sign section): The key to be used for signing is …
How to decrypt file that was symmetrically encrypted using GPG?
Jan 3, 2020 · $ gpg --decrypt test.txt gpg: AES encrypted data gpg: encrypted with 1 passphrase $ gpg --symmetric --decrypt test.txt gpg: conflicting commands $ gpg --passphrase --decrypt …
How to export a GPG private key and public key to a file
Nov 15, 2018 · gpg --output public.gpg --export SOMEKEYID && \ gpg --output - --export-secret-key SOMEKEYID |\ cat public.gpg - |\ gpg --armor --output keys.asc --symmetric --cipher-algo …
gpg - Encrypt multiple files at once - Unix & Linux Stack Exchange
Apr 16, 2017 · tar c project1.7z project2.7z | gpg --cipher-algo AES256 --compression-algo BZIP2 -co projects.gpg And to extract: gpg -d projects.gpg | tar x You'll be left with project1.7z and …
gpg - gpg2 won't import .key files - Unix & Linux Stack Exchange
Solved it by replacing my new .gnupg directory by the old one, exporting the keys in an importable format, then restoring my new .gnupg and importing the keys :
How to renew an expired encryption subkey with gpg
Nov 17, 2019 · 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 …
Solving gpg: decryption failed: No secret key - linux
Mar 21, 2023 · I keep just the ***.gpg file in an external hard drive. When I try in my new Linux system gpg --output *** --decrypt ***.gpg I get. gpg: encrypted with RSA key, ID …