https://github.com/mschae/jwtex
A JWT encoding and decoding library in Elixir
https://github.com/mschae/jwtex
Last synced: 2 months ago
JSON representation
A JWT encoding and decoding library in Elixir
- Host: GitHub
- URL: https://github.com/mschae/jwtex
- Owner: mschae
- Created: 2015-05-01T19:27:42.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2015-05-04T18:06:00.000Z (about 10 years ago)
- Last Synced: 2025-03-06T14:03:17.015Z (2 months ago)
- Language: Elixir
- Size: 109 KB
- Stars: 5
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- freaking_awesome_elixir - Elixir - A library to encode and decode [JWT tokens](http://jwt.io/). (JSON)
- fucking-awesome-elixir - jwtex - A library to encode and decode [JWT tokens](http://jwt.io/). (JSON)
- awesome-jwt - jwtex - Library to encode and decode JWT tokens. (Libraries / Elixir)
- awesome-elixir - jwtex - A library to encode and decode [JWT tokens](http://jwt.io/). (JSON)
README
Jwtex
=====A library to en- and decode JWT tokens.
Supports the following alogrithms:
- plaintext
- HS256
- HS384
- HS512Will add more in the future.
Supports the following properties:
- exp
- nbf## Usage
```elixir
JWTex.decode "to.ke.n", "secret
```