summaryrefslogtreecommitdiffstats
path: root/revoke_crt.py
Commit message (Collapse)AuthorAgeFilesLines
* revoke_crt.py: Update _b64 function.rsiddharth2019-07-091-1/+4
| | | | | | - Convert `b` to `bytes` if it is a `str`. - Convert the base64 encoded `bytes` to `str` before using `replace` for stripping `=`.
* revoke_crt.py: Write bytes to temporary file.rsiddharth2019-07-091-1/+1
| | | | | | Files opened using `tempfile.NamedTemporaryFile` are opened by default in binary mode. Writing `str` to the temporary file causes it error out.
* revoke_crt.py: Use input instead of raw_input.rsiddharth2019-07-091-1/+1
|
* revoke_crt.py: Update subprocess.Popen call.rsiddharth2019-07-091-1/+1
| | | | | | Set `universal_newlines` argument to True for the `subprocess.Popen` that reads the public key so that the `out` returned from proc.communicate is of type `str`.
* revoke_crt.py: Decode error message before writing to stderr.rsiddharth2019-07-091-1/+1
|
* revoke_crt.py: Use HTTPError from urllib.error.rsiddharth2019-07-091-1/+2
|
* revoke_crt.py: Begin switch to Python 3 only.rsiddharth2019-07-091-5/+6
| | | | | - Import urllib.request - Remove python2 urllib2 import.
* removed unused terms in revoke scriptDaniel Roesler2017-11-141-1/+0
|
* fixed agreement urlDaniel Roesler2016-08-021-1/+1
|
* fixed #40, updated formatting to be backwards compatible with python 2.6Daniel Roesler2015-12-051-6/+6
|
* removed unused importsDaniel Roesler2015-11-281-2/+2
|
* Address review feedbackJason Heard2015-11-171-1/+2
|
* Only mention user key for revokeJason Heard2015-11-151-3/+2
|
* Update README to mention revocationJason Heard2015-11-151-2/+3
|
* Add revocation scriptJason Heard2015-11-151-0/+136