We are setting up our first EDI system that relies on incoming and outgoing file encryption using OpenPGP. The incoming files that are encrypted with our public key, we can successfully decrypt using our private key using Gpg4win's command line option:
gpg --batch --passphrase "SOME_KEY" --decrypt-files "%decryptingdir%\*.pgp"
What I now need to do, is the reverse, and encrypt the outgoing files using our partners public key.
I have been unable to find any command line documentation around batch encryption using a public key. I assumed it would be something in the order of:
gpg --batch --encrypt-files "%encryptingdir%\*.pgp" --key "SOME_KEY_PATH"
Can anyone advise how I can achieve this encryption via the command line?