Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | revoke_crt.py: Update _b64 function. | rsiddharth | 2019-07-09 | 1 | -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. | rsiddharth | 2019-07-09 | 1 | -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. | rsiddharth | 2019-07-09 | 1 | -1/+1 |
| | |||||
* | revoke_crt.py: Update subprocess.Popen call. | rsiddharth | 2019-07-09 | 1 | -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. | rsiddharth | 2019-07-09 | 1 | -1/+1 |
| | |||||
* | revoke_crt.py: Use HTTPError from urllib.error. | rsiddharth | 2019-07-09 | 1 | -1/+2 |
| | |||||
* | revoke_crt.py: Begin switch to Python 3 only. | rsiddharth | 2019-07-09 | 1 | -5/+6 |
| | | | | | - Import urllib.request - Remove python2 urllib2 import. | ||||
* | removed unused terms in revoke script | Daniel Roesler | 2017-11-14 | 1 | -1/+0 |
| | |||||
* | fixed agreement url | Daniel Roesler | 2016-08-02 | 1 | -1/+1 |
| | |||||
* | fixed #40, updated formatting to be backwards compatible with python 2.6 | Daniel Roesler | 2015-12-05 | 1 | -6/+6 |
| | |||||
* | removed unused imports | Daniel Roesler | 2015-11-28 | 1 | -2/+2 |
| | |||||
* | Address review feedback | Jason Heard | 2015-11-17 | 1 | -1/+2 |
| | |||||
* | Only mention user key for revoke | Jason Heard | 2015-11-15 | 1 | -3/+2 |
| | |||||
* | Update README to mention revocation | Jason Heard | 2015-11-15 | 1 | -2/+3 |
| | |||||
* | Add revocation script | Jason Heard | 2015-11-15 | 1 | -0/+136 |