- Timestamp:
- Apr 12, 2020, 12:45:29 PM (10 months ago)
- Branches:
- asyncio, master, proxy-ticket
- Children:
- 199acff
- Parents:
- 204377e
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
test/data/ocsp.py
r204377e rde81c0f 78 78 79 79 try: 80 req = sys.stdin.buffer.read(int(content_length)) 80 81 openssl = os.getenv('OPENSSL') or shutil.which('openssl') 81 82 openssl_run = subprocess.run([openssl, 'ocsp', … … 86 87 '-nmin', os.getenv('OCSP_VALID_MIN', '5'), 87 88 '-reqin', '-', '-respout', '-'], 88 stdin=sys.stdin.buffer, capture_output=True)89 input=req, capture_output=True) 89 90 90 91 if openssl_run.returncode == 0:
Note: See TracChangeset
for help on using the changeset viewer.