Domain Keys in Python

Andrew Veitch andrew.veitch at yahoo.co.uk
Fri Apr 20 15:58:02 EDT 2007


--- Andrew Veitch <andrew.veitch at yahoo.co.uk> wrote:

> In Perl I would just use Crypt:RSA which has a sign
> method with an armour option which generates exactly
> what I want but I can't find a way of doing this in
> Python.

I've worked it out, just for the archives the answer
is:

import base64
from M2Crypto import RSA
key = RSA.load_key('rsa.private')
msg='Hello world'
print base64.b64encode(key.sign(msg))

I will publish my DomainKey implementation shortly.

A



More information about the Python-list mailing list