diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2015-12-19 12:15:09 -0500 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2015-12-19 12:15:09 -0500 |
commit | 1d3f2bfc98a9f561891b7d772ad58d0c5d07edb9 (patch) | |
tree | 724aa2bcbed7651bbe1927db69a41db3bbdcc178 | |
parent | 89f386a76998223f6ade27a7336c610cd1308163 (diff) | |
download | cryptography-1d3f2bfc98a9f561891b7d772ad58d0c5d07edb9.tar.gz cryptography-1d3f2bfc98a9f561891b7d772ad58d0c5d07edb9.tar.bz2 cryptography-1d3f2bfc98a9f561891b7d772ad58d0c5d07edb9.zip |
Fixed #2531 -- added missing EV oid
-rw-r--r-- | docs/x509/reference.rst | 4 | ||||
-rw-r--r-- | src/cryptography/x509/oid.py | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/docs/x509/reference.rst b/docs/x509/reference.rst index b2192c4e..0bd169c9 100644 --- a/docs/x509/reference.rst +++ b/docs/x509/reference.rst @@ -1851,6 +1851,10 @@ instances. The following common OIDs are available as constants. Corresponds to the dotted string ``"1.2.840.113549.1.9.1"``. + .. attribute:: JURISDICTION_COUNTRY_NAME + + Corresponds to the dotted string ``"1.3.6.1.4.1.311.60.2.1.3"``. + .. class:: SignatureAlgorithmOID diff --git a/src/cryptography/x509/oid.py b/src/cryptography/x509/oid.py index ead40169..ebf6ca1d 100644 --- a/src/cryptography/x509/oid.py +++ b/src/cryptography/x509/oid.py @@ -80,6 +80,7 @@ class NameOID(object): PSEUDONYM = ObjectIdentifier("2.5.4.65") DOMAIN_COMPONENT = ObjectIdentifier("0.9.2342.19200300.100.1.25") EMAIL_ADDRESS = ObjectIdentifier("1.2.840.113549.1.9.1") + JURISDICTION_COUNTRY_NAME = ObjectIdentifier("1.3.6.1.4.1.311.60.2.1.3") class SignatureAlgorithmOID(object): |