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 christian.heimes
Recipients christian.heimes, giampaolo.rodola, janssen, pitrou
Date 2013-10-30.09:55:06
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1383126908.52.0.345026933499.issue19448@psf.upfronthosting.co.za>
In-reply-to
Content
For #17134 I need a decent way to map OIDs to human readable strings and vice versa. OpenSSL has a couple of method for the task, e.g. http://www.openssl.org/docs/crypto/OBJ_nid2obj.html

The patch implements three ways to lookup NID, SN, LN and OID: by OpenSSL's internal numeric id (NID), by OID or by name:

>>> ssl.txt2obj("MD5", name=True)
ASN1Object(nid=4, shortname='MD5', longname='md5', oid='1.2.840.113549.2.5')
>>> ssl.txt2obj("clientAuth", name=True)
ASN1Object(nid=130, shortname='clientAuth', longname='TLS Web Client Authentication', oid='1.3.6.1.5.5.7.3.2')
>>> ssl.txt2obj("1.3.6.1.5.5.7.3.1")
ASN1Object(nid=129, shortname='serverAuth', longname='TLS Web Server Authentication', oid='1.3.6.1.5.5.7.3.1')
History
Date User Action Args
2013-10-30 09:55:08christian.heimessetrecipients: + christian.heimes, janssen, pitrou, giampaolo.rodola
2013-10-30 09:55:08christian.heimessetmessageid: <1383126908.52.0.345026933499.issue19448@psf.upfronthosting.co.za>
2013-10-30 09:55:08christian.heimeslinkissue19448 messages
2013-10-30 09:55:08christian.heimescreate