/usr/lib/python3.9/site-packages/acme
"""ACME utilities.""" from typing import Any from typing import Callable from typing import Dict from typing import Mapping def map_keys(dikt: Mapping[Any, Any], func: Callable[[Any], Any]) -> Dict[Any, Any]: """Map dictionary keys.""" return {func(key): value for key, value in dikt.items()}
.
Edit
..
Edit
__init__.py
Edit
__pycache__
Edit
_internal
Edit
challenges.py
Edit
client.py
Edit
crypto_util.py
Edit
errors.py
Edit
fields.py
Edit
jws.py
Edit
messages.py
Edit
py.typed
Edit
standalone.py
Edit
util.py
Edit