certapi 0.3.0__tar.gz → 0.3.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {certapi-0.3.0 → certapi-0.3.1}/PKG-INFO +1 -1
- {certapi-0.3.0 → certapi-0.3.1}/setup.py +1 -1
- {certapi-0.3.0 → certapi-0.3.1}/src/certapi/Acme.py +2 -2
- {certapi-0.3.0 → certapi-0.3.1}/src/certapi.egg-info/PKG-INFO +1 -1
- {certapi-0.3.0 → certapi-0.3.1}/MANIFEST.in +0 -0
- {certapi-0.3.0 → certapi-0.3.1}/README.md +0 -0
- {certapi-0.3.0 → certapi-0.3.1}/pyproject.toml +0 -0
- {certapi-0.3.0 → certapi-0.3.1}/setup.cfg +0 -0
- {certapi-0.3.0 → certapi-0.3.1}/src/certapi/__init__.py +0 -0
- {certapi-0.3.0 → certapi-0.3.1}/src/certapi/certauthority.py +0 -0
- {certapi-0.3.0 → certapi-0.3.1}/src/certapi/challenge.py +0 -0
- {certapi-0.3.0 → certapi-0.3.1}/src/certapi/cloudflare_challenge_store.py +0 -0
- {certapi-0.3.0 → certapi-0.3.1}/src/certapi/cloudflare_client.py +0 -0
- {certapi-0.3.0 → certapi-0.3.1}/src/certapi/crypto.py +0 -0
- {certapi-0.3.0 → certapi-0.3.1}/src/certapi/crypto_classes.py +0 -0
- {certapi-0.3.0 → certapi-0.3.1}/src/certapi/custom_certauthority.py +0 -0
- {certapi-0.3.0 → certapi-0.3.1}/src/certapi/db.py +0 -0
- {certapi-0.3.0 → certapi-0.3.1}/src/certapi/digitalocean_challenge_store.py +0 -0
- {certapi-0.3.0 → certapi-0.3.1}/src/certapi/digitalocean_client.py +0 -0
- {certapi-0.3.0 → certapi-0.3.1}/src/certapi/util.py +0 -0
- {certapi-0.3.0 → certapi-0.3.1}/src/certapi.egg-info/SOURCES.txt +0 -0
- {certapi-0.3.0 → certapi-0.3.1}/src/certapi.egg-info/dependency_links.txt +0 -0
- {certapi-0.3.0 → certapi-0.3.1}/src/certapi.egg-info/requires.txt +0 -0
- {certapi-0.3.0 → certapi-0.3.1}/src/certapi.egg-info/top_level.txt +0 -0
|
@@ -344,8 +344,8 @@ class Order:
|
|
|
344
344
|
certificate_res = self._acme._signed_req(
|
|
345
345
|
self._data["certificate"], step="Get Certificate from Successful Order"
|
|
346
346
|
)
|
|
347
|
-
certificate = crypto.x509.load_pem_x509_certificates(certificate_res.
|
|
348
|
-
return (certificate_res.
|
|
347
|
+
certificate = crypto.x509.load_pem_x509_certificates(certificate_res.content)
|
|
348
|
+
return (certificate_res.text, certificate)
|
|
349
349
|
|
|
350
350
|
def finalize(self, csr: CertificateSigningRequest):
|
|
351
351
|
"""
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|