pypomes-jwt 1.3.0__tar.gz → 1.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.
Potentially problematic release.
This version of pypomes-jwt might be problematic. Click here for more details.
- {pypomes_jwt-1.3.0 → pypomes_jwt-1.3.1}/PKG-INFO +1 -1
- {pypomes_jwt-1.3.0 → pypomes_jwt-1.3.1}/pyproject.toml +1 -1
- {pypomes_jwt-1.3.0 → pypomes_jwt-1.3.1}/src/pypomes_jwt/jwt_config.py +1 -1
- {pypomes_jwt-1.3.0 → pypomes_jwt-1.3.1}/.gitignore +0 -0
- {pypomes_jwt-1.3.0 → pypomes_jwt-1.3.1}/LICENSE +0 -0
- {pypomes_jwt-1.3.0 → pypomes_jwt-1.3.1}/README.md +0 -0
- {pypomes_jwt-1.3.0 → pypomes_jwt-1.3.1}/src/pypomes_jwt/__init__.py +0 -0
- {pypomes_jwt-1.3.0 → pypomes_jwt-1.3.1}/src/pypomes_jwt/jwt_pomes.py +0 -0
- {pypomes_jwt-1.3.0 → pypomes_jwt-1.3.1}/src/pypomes_jwt/jwt_providers.py +0 -0
- {pypomes_jwt-1.3.0 → pypomes_jwt-1.3.1}/src/pypomes_jwt/jwt_registry.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: pypomes_jwt
|
|
3
|
-
Version: 1.3.
|
|
3
|
+
Version: 1.3.1
|
|
4
4
|
Summary: A collection of Python pomes, penyeach (JWT module)
|
|
5
5
|
Project-URL: Homepage, https://github.com/TheWiseCoder/PyPomes-JWT
|
|
6
6
|
Project-URL: Bug Tracker, https://github.com/TheWiseCoder/PyPomes-JWT/issues
|
|
@@ -52,7 +52,7 @@ class JwtConfig(Enum):
|
|
|
52
52
|
def_value=300)
|
|
53
53
|
ACCOUNT_LIMIT: int = env_get_int(key=f"{APP_PREFIX}_JWT_ACCOUNT_LIMIT",
|
|
54
54
|
def_value=5)
|
|
55
|
-
DEFAULT_ALGORITHM: _default_algorithm
|
|
55
|
+
DEFAULT_ALGORITHM: JwtAlgorithm = _default_algorithm
|
|
56
56
|
ENCODING_KEY: bytes = _encoding_key
|
|
57
57
|
DECODING_KEY: bytes = _decoding_key
|
|
58
58
|
# recommended: at least 2 hours (set to 24 hours)
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|