Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.