aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--scripts/rpki/x509.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/scripts/rpki/x509.py b/scripts/rpki/x509.py
index 7f82cd56..e89d0f2c 100644
--- a/scripts/rpki/x509.py
+++ b/scripts/rpki/x509.py
@@ -544,9 +544,7 @@ class SignedManifest(DER_object):
self.clear()
self.content = content
- def sign(self, keypair, certs, content = None):
- if content is not None:
- self.set_content(content)
+ def sign(self, keypair, certs):
self.DER = rpki.cms.sign(self.content.toString(), keypair, certs)
def verify(self, ta):
Austein <sra@hactrn.net> 2008-06-12 18:29:28 +0000 Cleanup' href='/sra/rpki.net/commit/Makefile?id=38fe69c217faefc2b3df6deeef636d679389f7dd'>38fe69c2
e3267ab1


e3267ab1

a2b3951f
786c821b

f25b1a9a


176c13d5




1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32