diff options
author | Rob Austein <sra@hactrn.net> | 2009-07-01 21:20:26 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2009-07-01 21:20:26 +0000 |
commit | 2827ead017bf5f55b769834de53a8e03d91c9feb (patch) | |
tree | 03c0c23bae7b05d888435c4b1aea4da248a80fe7 /myrpki/xml-parse-test.py | |
parent | 60b0fb8cbc48ef40ed37c84c5cf78f407efa204f (diff) |
Less annoying cert dump
svn path=/myrpki/xml-parse-test.py; revision=2556
Diffstat (limited to 'myrpki/xml-parse-test.py')
-rwxr-xr-x | myrpki/xml-parse-test.py | 2 |
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: |