|
|
|
Change log
- Changes DSA signing to use random.SystemRandom(). Just calling random.randint() uses a weak source of randomness. See mailing list for details. - Reorders import of simplejson and imports it as "json". The json module in Python 2.6 has the same "dumps" and "loads" calls as simplejson. However, this would break in <2.6 if someone had python- json installed since it's in a module also named "json". So, we'll try importing ...
Older revisions
r414
by steveweis
on May 28, 2009
Diff
Fixing array testing timing attack. Trying to set up files for distutils
r411
by sebastien.martini
on May 26, 2009
Diff
- Module json is imported by default. If it fails (python < 2.6) try to import the module simplejson. - Module hashlib is imported by ...