diff options
author | Rob Austein <sra@hactrn.net> | 2007-11-24 01:39:43 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2007-11-24 01:39:43 +0000 |
commit | 3157f7d86c8cc3527bd3e0ce28b94d8ac161c51a (patch) | |
tree | 476d70d307340465c28acc1d1b30e34ca45b8ecb | |
parent | e47df693f9f21446be2b504a7eaf95e5e90a2099 (diff) |
Nit
svn path=/scripts/rpki/cms.py; revision=1340
-rw-r--r-- | scripts/rpki/cms.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/rpki/cms.py b/scripts/rpki/cms.py index 1b150551..71370f91 100644 --- a/scripts/rpki/cms.py +++ b/scripts/rpki/cms.py @@ -93,9 +93,9 @@ def verify(cms, ta): raise rpki.exceptions.CMSVerificationFailed, "CMS verification failed with status %s" % status -def xml_verify(elt, ta): +def xml_verify(cms, ta): """Composite routine to verify CMS-wrapped XML.""" - return lxml.etree.fromstring(verify(elt, ta)) + return lxml.etree.fromstring(verify(cms, ta)) def xml_sign(elt, key, certs, encoding = "us-ascii"): """Composite routine to sign CMS-wrapped XML.""" |