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 gregory.p.smith
Recipients alex, christian.heimes, dstufft, giampaolo.rodola, gregory.p.smith, janssen, pitrou
Date 2016-08-25.20:19:29
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1472156369.74.0.179497982684.issue27768@psf.upfronthosting.co.za>
In-reply-to
Content
The processor capabilities vector is not the API you want.

What you want is an API to ask the ssl library about characteristics of algorithm implementations it will be using.

Those are not the same thing.

If we want to expose processor capabilities as a library function it should not be done in the ssl module.  That information belongs in the platform module.  And doing so should not require a third party library such as OpenSSL.  Querying capabilities is a very simple instruction and every platform architecture specific C macros to do it.
History
Date User Action Args
2016-08-25 20:19:29gregory.p.smithsetrecipients: + gregory.p.smith, janssen, pitrou, giampaolo.rodola, christian.heimes, alex, dstufft
2016-08-25 20:19:29gregory.p.smithsetmessageid: <1472156369.74.0.179497982684.issue27768@psf.upfronthosting.co.za>
2016-08-25 20:19:29gregory.p.smithlinkissue27768 messages
2016-08-25 20:19:29gregory.p.smithcreate