diff options
author | Rob Austein <sra@hactrn.net> | 2011-12-15 23:42:10 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2011-12-15 23:42:10 +0000 |
commit | 3c52d332ed264fb6d5257c9cde787fc9fc0624c3 (patch) | |
tree | ca036cfb33135f0a9d9e1a1efc827e1c3fb345f8 /rpkid/rpki/x509.py | |
parent | 30923f4cb2ae26aca367c01fab6ead0b59e59db9 (diff) |
Checkpoint. Rewrote all the OOB-setup portions of rpkic to use new
IRDB, which simplified the code considerably as a nice side effect.
svn path=/branches/tk100/; revision=4123
Diffstat (limited to 'rpkid/rpki/x509.py')
-rw-r--r-- | rpkid/rpki/x509.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/rpkid/rpki/x509.py b/rpkid/rpki/x509.py index abdd9194..b5300bee 100644 --- a/rpkid/rpki/x509.py +++ b/rpkid/rpki/x509.py @@ -47,6 +47,7 @@ import rpki.POW, rpki.POW.pkix, base64, lxml.etree, os, subprocess, sys import email.mime.application, email.utils, mailbox, time import rpki.exceptions, rpki.resource_set, rpki.oids, rpki.sundial import rpki.manifest, rpki.roa, rpki.log, rpki.async, rpki.ghostbuster +import rpki.relaxng def base64_with_linebreaks(der): """ @@ -1415,6 +1416,11 @@ class XML_CMS_object(CMS_object): saxify = None +class SignedReferral(XML_CMS_object): + encoding = "us-ascii" + schema = rpki.relaxng.myrpki + saxify = None + class Ghostbuster(CMS_object): """ Class to hold Ghostbusters record (CMS-wrapped VCard). This is |