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 bmwiedemann
Recipients bmwiedemann, christian.heimes, vstinner
Date 2017-05-05.15:57:41
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1493999861.9.0.0606405581705.issue30276@psf.upfronthosting.co.za>
In-reply-to
Content
This might work in some places, but if you look at real-world users like
urllib3/util/ssl_.py
> from hashlib import md5, sha1, sha256

or
twisted/words/protocols/jabber/xmlstream.py
> from hashlib import sha1

It would probably not need any openssl at all, but still gets the full penalty time from the import.
So you get all or nothing.
It would be nice to just get access to those few hashes you need for your protocal (because you certainly do not want to reimplement it).
History
Date User Action Args
2017-05-05 15:57:41bmwiedemannsetrecipients: + bmwiedemann, vstinner, christian.heimes
2017-05-05 15:57:41bmwiedemannsetmessageid: <1493999861.9.0.0606405581705.issue30276@psf.upfronthosting.co.za>
2017-05-05 15:57:41bmwiedemannlinkissue30276 messages
2017-05-05 15:57:41bmwiedemanncreate