Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/Demonware/jose
Python implementation of the Javascript Object Signing and Encryption (JOSE) framework (https://datatracker.ietf.org/wg/jose/charter/)
https://github.com/Demonware/jose
Last synced: 3 months ago
JSON representation
Python implementation of the Javascript Object Signing and Encryption (JOSE) framework (https://datatracker.ietf.org/wg/jose/charter/)
- Host: GitHub
- URL: https://github.com/Demonware/jose
- Owner: Demonware
- License: bsd-3-clause
- Created: 2014-04-16T14:20:45.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2024-03-07T06:39:14.000Z (11 months ago)
- Last Synced: 2024-05-19T18:02:13.201Z (8 months ago)
- Language: Python
- Size: 104 KB
- Stars: 95
- Watchers: 20
- Forks: 34
- Open Issues: 19
-
Metadata Files:
- Readme: README
- Changelog: CHANGES
- License: LICENSE
Awesome Lists containing this project
- awesome-python - jose - 3-Clause](https://api.github.com/licenses/bsd-3-clause)- Python implementation of the Javascript Object Signing and Encryption (JOSE) framework (https://datatracker.ietf.org/wg/jose/charter/) (Awesome Python / Authentication)
- starred-awesome - jose - Python implementation of the Javascript Object Signing and Encryption (JOSE) framework (https://datatracker.ietf.org/wg/jose/charter/) (Python)
README
JOSE
====JOSE is a framework intended to provide a method to securely transfer
claims (such as authorization information) between parties. The JOSE framework
provides a collection of specifications to serve this purpose. A JSON Web
Token (JWT) contains claims that can be used to allow a system to apply access
control to resources it owns.JWTs can be represented as either JSON Web Signature (JWS) or a JSON Web
Encryption (JWE) objects. Claims within a JWS can be read as they are simply
base64-encoded (but carry with them a signature for authentication). Claims
in a JWE on the other hand, are encrypted and as such, are entirely opaque
to clients using them as their means of authentication and authorization.This library implements JWS and JWEs along with a subset of the
encryption / authentication algorithms recommended by the JOSE framework.Documentation
=============
http://jose.readthedocs.org/en/latestBuilds
======
https://travis-ci.org/Demonware/jose