diff options
author | Rob Austein <sra@hactrn.net> | 2007-10-31 00:54:30 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2007-10-31 00:54:30 +0000 |
commit | 96f5ab7cb0f8d696014bbc4bfc54d00b7af176d9 (patch) | |
tree | bd823de20763729f43a67d556e5cfb91de09fd25 | |
parent | 0b7c69e2a36e601d91cb5a69b8c0ca885f1e0e5a (diff) |
Encode AIA correctly
svn path=/scripts/rpki/x509.py; revision=1210
-rw-r--r-- | scripts/rpki/x509.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/rpki/x509.py b/scripts/rpki/x509.py index 25768d19..aed8ae5e 100644 --- a/scripts/rpki/x509.py +++ b/scripts/rpki/x509.py @@ -281,7 +281,7 @@ class X509(DER_object): exts = [ ["subjectKeyIdentifier", False, ski], ["authorityKeyIdentifier", False, (aki, (), None)], ["cRLDistributionPoints", False, ((("fullName", (("uri", crldp),)), None, ()),)], - ["authorityInfoAccess", False, aia], + ["authorityInfoAccess", False, ((1, 3, 6, 1, 5, 5, 7, 48, 2), ("uri", aia))], ["subjectInfoAccess", False, sia], ["certificatePolicies", True, (((1, 3, 6, 1, 5, 5, 7, 14, 2), ()),)] ] |