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

Pull request that fixes #282. It's working for me and it doesn't look like anything else should break because of this change, because everywhere the public interface is used, the...

JSON Web Signature (JWS) represents the payload of a JWS as base64url-encoded value and uses this value in the JWS Signature computation. While this enables arbitrary payloads to be integrity...

enhancement
help wanted

A user of this library was having an issue decrypting JWE tokens produced by it in my javascript library. See https://github.com/panva/jose/issues/314 Despite a few hurdles overcome they are not able...

help wanted

jose.jwe.encrypt outputs the compact form of JWE. I understand how to reformat this into the Complete JWE JSON Serialization form. What I don't see is a way to use jose.jwe.encrypt...

There are small typos in: - TODO.md - jose/jwe.py Fixes: - Should read `verification` rather than `verifcation`. - Should read `encryption` rather than `encryptionn`. - Should read `compact` rather than...

I would like to setup an oauth2-server that serves the public JWKs, while providing JWTs that are signed via JWK asymmetric keys. Can this package do that? If so, can...

On building my packages I'm using `sphinx-build` command with `-n` switch which shows warmings about missing references. These are not critical issues. Here is the output with warnings: ```console +...

It would be nice to have a section of the readme dedicated to explaining why one might use this project instead of pyjwt, especially since it says it was based...

docs

This is a contribution for issue number #166. I have also observed that as per rfc7515, section 4.1.9 the recommended value for typ header should be "JOSE" and hence include...

Hi ! I am trying to use the ES256 algorithm to sign all my token but for some reason I receive errors when I try to do that. I use...