diff options
author | Rob Austein <sra@hactrn.net> | 2008-05-01 07:07:28 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2008-05-01 07:07:28 +0000 |
commit | ac9ca8b4e7904365dd0e37b0599f2f66b289ed46 (patch) | |
tree | 128d388c9c9aa8aad22cfa4d9998d994f5a46bf4 /rpkid/irbe-cli.py | |
parent | dd4e65cc86b552daadc0d41408f8635236e182e0 (diff) |
Simplify BSC and start adding BPKI CRL support; the latter doesn't
work yet due to an apparent bug in OpenSSL (CMS_add0_crl() dumps core).
If through some bizzare twist of fate we revive the idea of allowing
CA certs in CMS messages, this is the change that will need to be
(partly) backed out.
svn path=/docs/left-right-xml; revision=1730
Diffstat (limited to 'rpkid/irbe-cli.py')
-rwxr-xr-x | rpkid/irbe-cli.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/rpkid/irbe-cli.py b/rpkid/irbe-cli.py index 02c55a6c..eea87ff4 100755 --- a/rpkid/irbe-cli.py +++ b/rpkid/irbe-cli.py @@ -95,7 +95,11 @@ class bsc_elt(cmd_mixin, rpki.left_right.bsc_elt): def client_query_signing_cert(self, arg): """--signing_cert option.""" - self.signing_cert.append(rpki.x509.X509(Auto_file=arg)) + self.signing_cert = rpki.x509.X509(Auto_file=arg) + + def client_query_signing_cert_crl(self, arg): + """--signing_cert_crl option.""" + self.signing_cert_crl = rpki.x509.CRL(Auto_file=arg) def client_reply_decode(self): global pem_out |