diff options
author | Rob Austein <sra@hactrn.net> | 2008-03-04 21:22:55 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2008-03-04 21:22:55 +0000 |
commit | 26e5d88724781aed7bd5a9fe6ac9b025a6b8713f (patch) | |
tree | bafe812dad66930e8798bed594bea0469127e3ba /rpkid/rpki/sql.py | |
parent | a5bde1c8c5713e68dd3992018ab22c39a6b4f532 (diff) |
Checkpoint
svn path=/rpkid/rpki/left_right.py; revision=1548
Diffstat (limited to 'rpkid/rpki/sql.py')
-rw-r--r-- | rpkid/rpki/sql.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/rpkid/rpki/sql.py b/rpkid/rpki/sql.py index 5adc4028..dd6312b6 100644 --- a/rpkid/rpki/sql.py +++ b/rpkid/rpki/sql.py @@ -561,14 +561,14 @@ class ca_detail_obj(sql_persistant): self.sql_store(gctx) return self - def issue_ee(self, ca, resources): + def issue_ee(self, ca, resources, sia = None): """Issue a new EE certificate.""" return self.latest_ca_cert.issue( keypair = self.private_key_id, subject_key = self.manifest_public_key, serial = ca.next_serial_number(), - sia = None, + sia = sia, aia = self.ca_cert_uri, crldp = self.crl_uri(ca), resources = resources, |