This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author dmalcolm
Recipients dmalcolm, gps, pitrou
Date 2010-07-03.00:03:33
SpamBayes Score 7.651707e-05
Marked as misclassified No
Message-id <1278115416.37.0.677252250136.issue9146@psf.upfronthosting.co.za>
In-reply-to
Content
Not quite ready yet:

Named methods work:
$ OPENSSL_FORCE_FIPS_MODE=1 ./python -c "import hashlib; m = hashlib.md5(); m.update('abc\n'); print m.hexdigest()"0bee89b07a248e27c83fc3d5951213c1
[15741 refs]

but lookup by name still fails:
OPENSSL_FORCE_FIPS_MODE=1 ./python -c "import hashlib; m = hashlib.new('md5'); m.update('abc\n'); print m.hexdigest()"
Segmentation fault (core dumped)
History
Date User Action Args
2010-07-03 00:03:36dmalcolmsetrecipients: + dmalcolm, pitrou, gps
2010-07-03 00:03:36dmalcolmsetmessageid: <1278115416.37.0.677252250136.issue9146@psf.upfronthosting.co.za>
2010-07-03 00:03:34dmalcolmlinkissue9146 messages
2010-07-03 00:03:33dmalcolmcreate