File tree Expand file tree Collapse file tree 4 files changed +8
-1
lines changed
Expand file tree Collapse file tree 4 files changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -4,3 +4,6 @@ jose.backends.CryptographyECKey
44jose.backends.CryptographyHMACKey
55jose.backends.CryptographyRSAKey
66jose.backends.ECDSAECKey
7+
8+ # See https://github.com/mpdavis/python-jose/pull/372
9+ jose.jwt.utc_now
Original file line number Diff line number Diff line change 1- version = " 3.3 .*"
1+ version = " 3.4 .*"
22upstream_repository = " https://github.com/mpdavis/python-jose"
33requires = [" types-pyasn1" ] # excluding pyrsa, cryptography until typing is available
Original file line number Diff line number Diff line change @@ -70,3 +70,5 @@ class Zips:
7070 SUPPORTED : set [str | None ]
7171
7272ZIPS : Zips
73+
74+ JWE_SIZE_LIMIT : int
Original file line number Diff line number Diff line change @@ -12,3 +12,5 @@ def base64url_decode(input: bytes) -> bytes: ...
1212def base64url_encode (input : bytes ) -> bytes : ...
1313def timedelta_total_seconds (delta : timedelta ) -> int : ...
1414def ensure_binary (s : str | bytes ) -> bytes : ...
15+ def is_pem_format (key : bytes ) -> bool : ...
16+ def is_ssh_key (key : bytes ) -> bool :
You can’t perform that action at this time.
0 commit comments