On Thu, May 20, 2010, Michael Strder wrote:
> Rainer Giedat wrote:
> > i have a hard time figuring out how i can print the cipher used to
> > encrypt a smime encrypted mail.
>
> openssl smime -in test.eml -pk7out|openssl asn1parse
>
> Or with OpenSSL 1.0 in case S/MIME MUA sent CMS instead of PK
Rainer Giedat wrote:
> i have a hard time figuring out how i can print the cipher used to
> encrypt a smime encrypted mail.
openssl smime -in test.eml -pk7out|openssl asn1parse
Or with OpenSSL 1.0 in case S/MIME MUA sent CMS instead of PKCS#7:
openssl cms -in test.eml -cmsout -outform pem|openss
Hi list,
i have a hard time figuring out how i can print the cipher used to
encrypt a smime encrypted mail. I already rtfm of course, but could
not find it. Is this possible with the openssl command line tool or do
i really have to hack something by myself?
Thank you,
Rainer
___