We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ac8f263 commit 3bfdb0cCopy full SHA for 3bfdb0c
3 files changed
stubs/python-jose/@tests/stubtest_allowlist.txt
@@ -4,3 +4,6 @@ jose.backends.CryptographyECKey
4
jose.backends.CryptographyHMACKey
5
jose.backends.CryptographyRSAKey
6
jose.backends.ECDSAECKey
7
+
8
+# See https://github.com/mpdavis/python-jose/pull/372
9
+jose.jwt.utc_now
stubs/python-jose/jose/constants.pyi
@@ -70,3 +70,5 @@ class Zips:
70
SUPPORTED: set[str | None]
71
72
ZIPS: Zips
73
74
+JWE_SIZE_LIMIT: int
stubs/python-jose/jose/utils.pyi
@@ -12,3 +12,5 @@ def base64url_decode(input: bytes) -> bytes: ...
12
def base64url_encode(input: bytes) -> bytes: ...
13
def timedelta_total_seconds(delta: timedelta) -> int: ...
14
def ensure_binary(s: str | bytes) -> bytes: ...
15
+def is_pem_format(key: bytes) -> bool: ...
16
+def is_ssh_key(key: bytes) -> bool:
0 commit comments