OXIESEC PANEL
- Current Dir:
/
/
snap
/
certbot
/
4737
/
lib
/
python3.12
/
site-packages
/
acme
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
06/12/2025 06:19:50 PM
rwxr-xr-x
📄
__init__.py
736 bytes
06/12/2025 06:19:38 PM
rw-r--r--
📁
__pycache__
-
06/12/2025 06:19:48 PM
rwxr-xr-x
📁
_internal
-
06/12/2025 06:19:48 PM
rwxr-xr-x
📄
challenges.py
23.05 KB
06/12/2025 06:19:38 PM
rw-r--r--
📄
client.py
36.41 KB
06/12/2025 06:19:38 PM
rw-r--r--
📄
crypto_util.py
18.49 KB
06/12/2025 06:19:38 PM
rw-r--r--
📄
errors.py
4.65 KB
06/12/2025 06:19:38 PM
rw-r--r--
📄
fields.py
1.61 KB
06/12/2025 06:19:38 PM
rw-r--r--
📄
jws.py
2.5 KB
06/12/2025 06:19:38 PM
rw-r--r--
📄
messages.py
26.56 KB
06/12/2025 06:19:38 PM
rw-r--r--
📄
py.typed
0 bytes
06/12/2025 06:19:38 PM
rw-r--r--
📄
standalone.py
13.15 KB
06/12/2025 06:19:38 PM
rw-r--r--
📄
util.py
303 bytes
06/12/2025 06:19:38 PM
rw-r--r--
Editing: __init__.py
Close
"""ACME protocol implementation. This module is an implementation of the `ACME protocol`_. .. _`ACME protocol`: https://datatracker.ietf.org/doc/html/rfc8555 """ import sys # This code exists to keep backwards compatibility with people using acme.jose # before it became the standalone josepy package. # # It is based on # https://github.com/requests/requests/blob/1278ecdf71a312dc2268f3bfc0aabfab3c006dcf/requests/packages.py import josepy as jose for mod in list(sys.modules): # This traversal is apparently necessary such that the identities are # preserved (acme.jose.* is josepy.*) if mod == 'josepy' or mod.startswith('josepy.'): sys.modules['acme.' + mod.replace('josepy', 'jose', 1)] = sys.modules[mod]