diff options
author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2015-01-01 20:04:25 -0600 |
---|---|---|
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2015-01-01 20:04:25 -0600 |
commit | 43c430e3f59dc25a5764a6d4011db83b3215bcdf (patch) | |
tree | 84193c7f47234ac160c863560c0832fa950cd34f | |
parent | 0d7aead176dbda689623be89cee68d0649e2aea4 (diff) | |
download | cryptography-43c430e3f59dc25a5764a6d4011db83b3215bcdf.tar.gz cryptography-43c430e3f59dc25a5764a6d4011db83b3215bcdf.tar.bz2 cryptography-43c430e3f59dc25a5764a6d4011db83b3215bcdf.zip |
add NIDs for x509 name parsing
-rw-r--r-- | src/cryptography/hazmat/bindings/openssl/nid.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/cryptography/hazmat/bindings/openssl/nid.py b/src/cryptography/hazmat/bindings/openssl/nid.py index a025d3b4..c2c0552b 100644 --- a/src/cryptography/hazmat/bindings/openssl/nid.py +++ b/src/cryptography/hazmat/bindings/openssl/nid.py @@ -211,6 +211,11 @@ static const int NID_organizationalUnitName; static const int NID_serialNumber; static const int NID_surname; static const int NID_givenName; +static const int NID_title; +static const int NID_generationQualifier; +static const int NID_dnQualifier; +static const int NID_pseudonym; +static const int NID_domainComponent; static const int NID_pkcs9_emailAddress; """ |