You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
810 B
35 lines
810 B
#!/usr/bin/env python
|
|
#
|
|
# This file is part of pyasn1-modules software.
|
|
#
|
|
# Copyright (c) 2005-2019, Ilya Etingof <etingof@gmail.com>
|
|
# License: http://snmplabs.com/pyasn1/license.html
|
|
#
|
|
# Read ASN.1/PEM OCSP response on stdin, parse into
|
|
# plain text, then build substrate from it
|
|
#
|
|
import sys
|
|
|
|
from pyasn1.codec.der import decoder
|
|
from pyasn1.codec.der import encoder
|
|
|
|
from pyasn1_modules import pem
|
|
from pyasn1_modules import rfc2560
|
|
|
|
if len(sys.argv) != 1:
|
|
print("""Usage:
|
|
$ cat ocsp-response.pem | %s""" % sys.argv[0])
|
|
sys.exit(-1)
|
|
|
|
ocspReq = rfc2560.OCSPResponse()
|
|
|
|
substrate = pem.readBase64FromFile(sys.stdin)
|
|
if not substrate:
|
|
sys.exit(0)
|
|
|
|
cr, rest = decoder.decode(substrate, asn1Spec=ocspReq)
|
|
|
|
print(cr.prettyPrint())
|
|
|
|
assert encoder.encode(cr) == substrate, 'OCSP request recode fails'
|