Encrypt to key outside of keyring

2013-12-27 Thread Matthias Fischer
Hello, is there a way to encrypt data to a specific key, which is not in the keyring, but instead present as a single keyfile? So instead of calling something like: $ gpg --recipient -e you could write something like: $ gpg --recipient-file -e I can achieve the wished behaviour by writing:

export-minimal and expired subkeys

2014-01-09 Thread Matthias Fischer
Hi, just a short question: Does the „export-minimal” option also remove unusable (expired) subkeys, or not? The manpage only mentions user IDs and signatures. If not, is there a simple way to minimize the export further by dropping those subkeys? Regards, MM __

Encrypt directly to keyfile

2014-07-06 Thread Matthias Fischer
Hi folks, I already asked the question here about half a year ago, but IIRC didn't get any reaction: Imagine you have a file containing one or more PGP-Public-Keys, and you want to encrypt something for this key, without adding the key to your public keyring. Is there some commandline option to

Aw: Re: Encrypt directly to keyfile

2014-07-18 Thread Matthias Fischer
Hauke schrieb: > Why should a feature be added that can so easily be emulated by a simple > script? To spare people the work of writing the same „simple script“ over and over again. > gpgdir="/tmp/keyring.$$" > test -d "$gpgdir" && rm -r "$gpgdir" > gpg --homedir "$gpgdir" --import KEYFILE > KE