I need a Python library that supports PEM files and both RSA signing and DES3 encryption. pycrypto doesn't seem to support PEM, and its mechanism for loading existing keys is undocumented and cryptic. m2crypto doesn't seem to support DES/DES3, oddly.

I've been running an openssl subprocess, but I'd rather have something built in and preferably fast. Does this exist?

(Failing that, I hesitate to ask, but are there high-level enough C apis available for this that I could write a special-purpose extension without killing myself/introducing vulns?)

link|improve this question
M2Crypto supports DES3 encryption e.g., sandbox.rulemaker.net/ngps/m2/howto.smime.html#ENCRYPT – J.F. Sebastian Apr 12 '10 at 23:44
feedback

1 Answer

up vote 6 down vote accepted

Check out the libraries mentioned in this overview: Comparison of Python cryptography modules

link|improve this answer
Looks like I was wrong on m2crypto. Thanks for the PDF comparison chart. – Jason S Apr 12 '10 at 23:48
Sure, happy to help. :) – ars Apr 13 '10 at 5:14
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.