summaryrefslogtreecommitdiffstats
path: root/sign_csr.py
Commit message (Collapse)AuthorAgeFilesLines
* sign_csr.py: Encode accountkey_json.rsiddharth2019-07-051-1/+1
| | | | Encode accountkey_json (to bytes) before passing to hashlib.sha256.
* sign_csr.py: Update construction of signed cert.rsiddharth2019-06-031-1/+1
| | | | Decode `signed_der64` to `str` before passing it to `textwrap.wrap`.
* sign_csr.py: Update handling of HTTPError.rsiddharth2019-06-031-3/+3
| | | | | Update error handling sections to treat the result of `HTTPError.read` as `bytes`.
* sign_csr.py: Write bytes to temporary files.rsiddharth2019-06-031-4/+4
| | | | | | Files opened using `tempfile.NamedTemporaryFile` are opened by default in binary mode. Writing `str` to the temporary file causes it error out.
* sign_csr.py: Update _b64 function.rsiddharth2019-06-031-1/+4
| | | | | | - Convert `b` to `bytes` if it is a `str`. - Convert the base64 encoded `bytes` to `str` before using `replace` for stripping `=`.
* sign_csr.py: Use `input` instead of `raw_input`.rsiddharth2019-06-031-5/+5
|
* sign_csr.py: Update subprocess.Popen calls.rsiddharth2019-06-031-2/+2
| | | | | | Set `universal_newlines` argument to True for `subprocess.Popen` calls that require the `stdout_data` from `proc.communicate()` to be of type `str`.
* sign_csr.py: Begin switch to Python 3 only.rsiddharth2019-06-031-22/+20
| | | | Import only Python 3 modules.
* Merge pull request #85 from surr/parseDaniel Roesler2017-11-141-1/+1
|\ | | | | Fix subject line parsing
| * Fix subject line parsingAlexander Inyukhin2017-01-071-1/+1
| | | | | | | | | | | | | | | | | | openssl output may contain spaces around = symbol in the 'Subject: CN = ' line. This breaks registering new certificates without extra domains (subjectAltNames) with error "Error creating new cert :: Authorizations for these names not found or expired ..."
* | fixed #94, added dynamic agreement terms url fetchingDaniel Roesler2017-11-141-2/+6
|/
* fixed agreement urlDaniel Roesler2016-08-021-1/+1
|
* Fix documentation text at the end of sign_csr.py tooJames Nylen2015-12-161-1/+6
|
* fixed #40, updated formatting to be backwards compatible with python 2.6Daniel Roesler2015-12-051-42/+42
|
* use the 'uri' key in the responses dictDaniel Roesler2015-12-031-2/+2
|
* fixed file-based response promptPetr Kutalek2015-12-041-1/+1
|
* Address review commentsJason Heard2015-11-171-36/+39
|
* Add missing slash to URLJason Heard2015-11-151-1/+1
|
* Add file-based challenge hostingJason Heard2015-11-151-17/+40
|
* switched to using http-01 challenge since SimpleHTTP is being removedDaniel Roesler2015-11-141-80/+64
|
* attempt to fix #16 modulus parsing for OSX openssl 0.9.8zg, which has ↵Daniel Roesler2015-11-081-1/+3
| | | | 'Modulus (4096 bit):' instead of 'Modulus:'
* cleaned up various descriptionsDaniel Roesler2015-11-051-1/+4
|
* added missing string format argumentgroestl2015-11-051-1/+1
|
* updated REAME with beta status, new demo usage, and real cert!Daniel Roesler2015-10-241-3/+25
|
* added email input, challenge response header, and command for public keyDaniel Roesler2015-10-241-23/+36
|
* updated challenge response to include token signed tokenDaniel Roesler2015-10-221-29/+71
|
* fix #6 and #7, but now getting a 'Authorizations for these names not found ↵Daniel Roesler2015-10-201-90/+73
| | | | or expired' error
* add the common name string instead of the match instance in domains setSimon Brulhart2015-06-151-1/+1
|
* fixed #3, added support for multiple domains via subject alt names. also ↵Daniel Roesler2015-06-141-100/+135
| | | | moved to SimpleHTTP with tls off
* forgot to add registration email...Daniel Roesler2015-06-121-1/+1
|
* general progress logging cleanupDaniel Roesler2015-06-121-9/+7
|
* fixed #2, made loading file errors more friendlyDaniel Roesler2015-06-121-0/+4
|
* updated readme with new command flowDaniel Roesler2015-06-111-11/+11
|
* updated script to be compatible with the new account and authorization stepsDaniel Roesler2015-06-111-127/+213
|
* added error catching for non-issued certDaniel Roesler2015-06-101-5/+9
|
* updated to new registration flow for ACMEDaniel Roesler2015-06-101-199/+146
|
* removed debug file and fixed numbering in commentsDaniel Roesler2015-01-191-11/+12
|
* added initial sign_csr script to repoDaniel Roesler2015-01-181-0/+293