diff options
author | Jack Lloyd <[email protected]> | 2017-12-20 09:36:19 -0500 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2017-12-20 09:36:19 -0500 |
commit | 752c549f8a56b01a77700e13f04988f52fac4d79 (patch) | |
tree | 9c49b368683f90c11cbef11782bdaddf82757898 /src/lib/asn1/oids.cpp | |
parent | 502570f103bd86808ff15bde84d2b3f7161ff5f3 (diff) | |
parent | 02e756dba4c1001b790c3496049f40ebfe89539b (diff) |
Merge GH #1363 Fix various X509 path building and validation bugs
Diffstat (limited to 'src/lib/asn1/oids.cpp')
-rw-r--r-- | src/lib/asn1/oids.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/lib/asn1/oids.cpp b/src/lib/asn1/oids.cpp index 3e5d02a7b..2c97f1d29 100644 --- a/src/lib/asn1/oids.cpp +++ b/src/lib/asn1/oids.cpp @@ -1,7 +1,7 @@ /* * OID maps * -* This file was automatically generated by .\src\scripts\oids.py on 2017-10-19 +* This file was automatically generated by ./src/scripts/oids.py on 2017-12-05 * * All manual edits to this file will be lost. Edit the script * then regenerate this source file. @@ -192,6 +192,7 @@ std::string lookup(const OID& oid) if(oid_str == "2.5.29.21") return "X509v3.ReasonCode"; if(oid_str == "2.5.29.23") return "X509v3.HoldInstructionCode"; if(oid_str == "2.5.29.24") return "X509v3.InvalidityDate"; + if(oid_str == "2.5.29.28") return "X509v3.CRLIssuingDistributionPoint"; if(oid_str == "2.5.29.30") return "X509v3.NameConstraints"; if(oid_str == "2.5.29.31") return "X509v3.CRLDistributionPoints"; if(oid_str == "2.5.29.32") return "X509v3.CertificatePolicies"; @@ -364,6 +365,7 @@ OID lookup(const std::string& name) if(name == "X509v3.AuthorityKeyIdentifier") return OID("2.5.29.35"); if(name == "X509v3.BasicConstraints") return OID("2.5.29.19"); if(name == "X509v3.CRLDistributionPoints") return OID("2.5.29.31"); + if(name == "X509v3.CRLIssuingDistributionPoint") return OID("2.5.29.28"); if(name == "X509v3.CRLNumber") return OID("2.5.29.20"); if(name == "X509v3.CertificatePolicies") return OID("2.5.29.32"); if(name == "X509v3.ExtendedKeyUsage") return OID("2.5.29.37"); |