Hi,
I was wondering does anyone have successful experiences integrating OpenSSL
FIPS modules with Python 2.x?
Is there any catch we need to be careful about in integrating Python with
OpenSSL FIPS modules?
Thanks.
--
https://mail.python.org/mailman/listinfo/python-list
I had already installed and tested M2Crypto.
My problem is that with this library I've not found a way to replicate the
operation that I can made with openssl.
As you can see, here:
openssl smime -decrypt -verify -inform DER -in ReadmeDiKe.pdf.p7m -noverify
-out ReadmeDike.pdf
No certificate is u
On 9 Sep, 01:30 pm, luca...@gmail.com wrote:
Hi all.
I need a trick to do something like this:
openssl smime -decrypt -verify -inform DER -in ReadmeDiKe.pdf.p7m
-noverify -out ReadmeDike.pdf
To unwrap a p7m file and read his content.
I know that I could use somthing like:
import os
os.system(
Hi all.
I need a trick to do something like this:
openssl smime -decrypt -verify -inform DER -in ReadmeDiKe.pdf.p7m
-noverify -out ReadmeDike.pdf
To unwrap a p7m file and read his content.
I know that I could use somthing like:
>>> import os
>>> os.system('openssl ')
but i would use a pyth