aboutsummaryrefslogtreecommitdiff
path: root/myrpki/xml-parse-test.py
diff options
context:
space:
mode:
authorRob Austein <sra@hactrn.net>2009-07-01 21:20:26 +0000
committerRob Austein <sra@hactrn.net>2009-07-01 21:20:26 +0000
commit2827ead017bf5f55b769834de53a8e03d91c9feb (patch)
tree03c0c23bae7b05d888435c4b1aea4da248a80fe7 /myrpki/xml-parse-test.py
parent60b0fb8cbc48ef40ed37c84c5cf78f407efa204f (diff)
Less annoying cert dump
svn path=/myrpki/xml-parse-test.py; revision=2556
Diffstat (limited to 'myrpki/xml-parse-test.py')
-rwxr-xr-xmyrpki/xml-parse-test.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/myrpki/xml-parse-test.py b/myrpki/xml-parse-test.py
index 81ae5ea8..e6a3a410 100755
--- a/myrpki/xml-parse-test.py
+++ b/myrpki/xml-parse-test.py
@@ -60,7 +60,7 @@ for x in tree.getiterator(tag("roa_request")):
print
def showpem(label, b64, kind):
- cmd = ("openssl", kind, "-noout", "-text", "-inform", "DER")
+ cmd = ("openssl", kind, "-noout", "-text", "-inform", "DER", "-certopt", "no_pubkey,no_sigdump")
p = subprocess.Popen(cmd, stdin = subprocess.PIPE, stdout = subprocess.PIPE)
text = p.communicate(input = base64.b64decode(b64))[0]
if p.returncode != 0: