python-jose icon indicating copy to clipboard operation
python-jose copied to clipboard

A JOSE implementation in Python

Results 123 python-jose issues
Sort by recently updated
recently updated
newest added

https://github.com/mpdavis/python-jose/compare/3.3.0...master shows 19 commits since last release which was +2 years ago. Do you have any plans to flush those commits and release new version .. soon? 🤔

Fixes header error with compression DEFLATE when decrypting payloads generated by Go,Java, and PHP JOSE implementations. I do no know if this effects other implementations, this is a bug our...

Hi. Please change 6-th line in `jwt.py` form `from collections import Mapping` to ``` try: from collections.abc import Mapping except ImportError: from collections import Mapping ``` And change 6-th line...

RTD has sent out multiple deprecation notices regarding config files and options in the config file. Adding this config file should silence them.

``` jose.exceptions.JWKError: Incorrect key type. Expected: 'oct', Received: EC ``` (happening in the `CryptographyHMACKey` class) If I understand what is happening correctly, the key-type is taken from the header of...

Hallo, I'm using Python 3.10.6 and I just started building a new JWT-based API with PyCharm 2023.1.3 (Community Edition). I wrote only few lines of code - not related with...

Hello 👋 I run a security community that finds and fixes vulnerabilities in OSS. A researcher (@mr-n30) has found a potential issue, which I would be eager to share with...

Hello world, The function `construct` in https://github.com/mpdavis/python-jose/blob/4b0701b46a8d00988afcc5168c2b3a1fd60d15d8/jose/jwk.py#L63 contains an `Generation of Error Message Containing Sensitive Information` vulnerability that allows an attacker to view the victims `Secret Key` that is used...

Fix for `Generation of Error Message Containing Sensitive Information` vulnerability

Bumps [cryptography](https://github.com/pyca/cryptography) from 39.0.1 to 41.0.3. Changelog Sourced from cryptography's changelog. 41.0.3 - 2023-08-01 * Fixed performance regression loading DH public keys. * Fixed a memory leak when using :class:`~cryptography.hazmat.primitives.ciphers.aead.ChaCha20Poly1305`....

dependencies