certapi 0.2.1__tar.gz → 0.2.2__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.2.1 → certapi-0.2.2}/PKG-INFO +1 -1
- {certapi-0.2.1 → certapi-0.2.2}/setup.py +1 -1
- {certapi-0.2.1 → certapi-0.2.2}/src/certapi/db.py +2 -1
- {certapi-0.2.1 → certapi-0.2.2}/src/certapi.egg-info/PKG-INFO +1 -1
- {certapi-0.2.1 → certapi-0.2.2}/MANIFEST.in +0 -0
- {certapi-0.2.1 → certapi-0.2.2}/README.md +0 -0
- {certapi-0.2.1 → certapi-0.2.2}/pyproject.toml +0 -0
- {certapi-0.2.1 → certapi-0.2.2}/setup.cfg +0 -0
- {certapi-0.2.1 → certapi-0.2.2}/src/certapi/Acme.py +0 -0
- {certapi-0.2.1 → certapi-0.2.2}/src/certapi/__init__.py +0 -0
- {certapi-0.2.1 → certapi-0.2.2}/src/certapi/certauthority.py +0 -0
- {certapi-0.2.1 → certapi-0.2.2}/src/certapi/challenge.py +0 -0
- {certapi-0.2.1 → certapi-0.2.2}/src/certapi/cloudflare_challenge_store.py +0 -0
- {certapi-0.2.1 → certapi-0.2.2}/src/certapi/cloudflare_client.py +0 -0
- {certapi-0.2.1 → certapi-0.2.2}/src/certapi/crypto.py +0 -0
- {certapi-0.2.1 → certapi-0.2.2}/src/certapi/crypto_classes.py +0 -0
- {certapi-0.2.1 → certapi-0.2.2}/src/certapi/custom_certauthority.py +0 -0
- {certapi-0.2.1 → certapi-0.2.2}/src/certapi/util.py +0 -0
- {certapi-0.2.1 → certapi-0.2.2}/src/certapi.egg-info/SOURCES.txt +0 -0
- {certapi-0.2.1 → certapi-0.2.2}/src/certapi.egg-info/dependency_links.txt +0 -0
- {certapi-0.2.1 → certapi-0.2.2}/src/certapi.egg-info/requires.txt +0 -0
- {certapi-0.2.1 → certapi-0.2.2}/src/certapi.egg-info/top_level.txt +0 -0
|
@@ -191,8 +191,9 @@ class FilesystemKeyStore(KeyStore):
|
|
|
191
191
|
key_path = os.path.join(self.keys_dir, f"{private_key_id}.key")
|
|
192
192
|
with open(key_path, "rb") as f:
|
|
193
193
|
key_content = f.read()
|
|
194
|
+
|
|
194
195
|
for domain in domains:
|
|
195
|
-
if name.endswith(".selfsigned"):
|
|
196
|
+
if name is not None and name.endswith(".selfsigned"):
|
|
196
197
|
domain = domain + ".selfsigned"
|
|
197
198
|
|
|
198
199
|
if domain != private_key_id:
|
|
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
|