Security noob here..
We need to encrypt a file before sending it to vendor.
They gave us their public key .asc file.
I want to encrypt using just minimum required parameters as pseudocode below :
pgp --encrypt "inputFile.txt" --publickey "publicKey.asc"
I have no need to associate the public key with a recipient name or email or import it into 'key-ring', or sign it, or any other such info.
Does my need make logical sense ? Can this be accomplished using PGP ? I found in another question that GPG has a -R option for hidden recipient. Does PGP have that ?
--remove-userid................................................remove a user ID from a keyAs for exactly what you're looking for... sadly it looks like it might not?
– Feb 25 '16 at 22:27