We need to choose between two signature schemes:

  • RSA/SHA2 S-MIME signatures
  • ECDSA/SHA2 S-MIME signatures

For that our python software needs to support one of this scheme. Currently for some political reasons the ECDSA solution is prefered.

Is the ECDSA solution supported by any of the python crypto modules (M2Crypto, ...) and do you have an example for that ?

The ECDSA support seems very young even for openssl.

Thanks in advance

link|improve this question
feedback

2 Answers

up vote 1 down vote accepted

ECDSA is supported in M2Crypto, but it can be optionally disabled. For example Fedora-based systems ship with ECDSA disabled in OpenSSL and M2Crypto. M2Crypto has some SMIME support as well, but since I haven't used it much I am not sure if that would be of help in this case. See the M2Crypto SMIME doc and SMIME unit tests, as well as ec unit tests.

link|improve this answer
thanks a lot Heikki, we will try that. Thanks also for maintaining the M2Crypto package. keep the good work – zoobert Feb 12 '10 at 13:01
Heikki how do you change the digest algo in SMIME in M2Crypto. We would like to use SHA256 and I didn't find how to do that. Thanks – zoobert Feb 16 '10 at 8:56
feedback

Ecliptic Curve Cryptography (ECDSA) as well as the more common RSA is supported by the OpenSSL library. I recommend using the pyOpenSSL bridge.

link|improve this answer
Thanks Michael. Have tried this scenario ECDSA/SHA256 as out of python, I saw lots of issues in the openssl mailing list. – zoobert Feb 11 '10 at 8:29
feedback

Your Answer

 
or
required, but never shown

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