Originally, I was trying to do this:
gpg -c --cipher-algo AES256 file | openssl smime -encrypt -aes256 -binary -outform D -in <*I don't know how to supply the option filename here*> -out file.enc ~/rsapubcert.pem
First encrypt with gpg producing file.gpg then piping it to openssl. But I don't know what to supply the -in option
I tried doing this:
gpg -c --cipher-algo AES256 file | openssl smime -encrypt -aes256 -binary -outform D ~/rsapubcert.pem > file.enc
but file.enc is not the right output when compared to doing ssl routine manually.
Thanks for any suggestion.