G-Corp / jwerl

[MIRROR] Erlang JWT Library

Home Page:https://gitlab.com/glejeune/jwerl

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

JWErl

Copyright (c) 2015, 2016, 2017, 2018, 2019 G-Corp - 2020 Gregoire Lejeune

Version: 1.1.0

Authors: Gregoire Lejeune (gregoire.lejeune@gmail.com).

All Contributors Hex.pm version Hex.pm downloads License
JWT

Warning, versions prior to 1.0.0 are affected by this vulnerabilitie. Get up to date!

Support

  • HS256, HS384, HS512
  • RS256, RS384, RS512
  • ES256, ES384, ES512

Usage

Erlang

% signed by default (hs256)
Jwt = jwerl:sign([{name, <<"bob">>}]).
jwerl:verify(Jwt).

% signed by specifing method
Jwt = jwerl:sign([{name, <<"bob">>}], hs512).
jwerl:verify(Jwt, hs512).

% signed with secret key
Jwt = jwerl:sign([{name, <<"bob">>}], hs256, <<"kkey">>).
jwerl:verify(Jwt, hs256, <<"kkey">>).

% signed by none
Jwt = jwerl:sign([{name, <<"bob">>}], none).
jwerl:verify(Jwt, none).

% signed by RS512
{ok, PrivtPem} = file:read_file("path/to/rsa_private_key.pem"),
{ok, PublcPem} = file:read_file("path/to/rsa_public.pem"),
Jwt = jwerl:sign([{name, <<"bob">>}], rs512, PrivtPem).
jwerl:verify(Jwt, rs512, PublcPem).

% signed by ES256
{ok, PrivtPem} = file:read_file("path/to/es_private_key.pem"),
{ok, PublcPem} = file:read_file("path/to/es_public.pem"),
Jwt = jwerl:sign([{name, <<"bob">>}], es256, PrivtPem).
jwerl:verify(Jwt, es256, PublcPem).

Elixir

% signed by default (hs256)
jwt = Jwerl.sign([name: "bob"])
Jwerl.verify(jwt)

% signed by specifing method
jwt = Jwerl.sign([name: "bob"], :hs512)
Jwerl.verify(jwt, :hs512)

% signed with secret key
jwt = Jwerl.sign([name: "bob"], :hs256, "kkey")
Jwerl.verify(jwt, :hs256, "kkey")

% signed by none
jwt = Jwerl.sign([name: "bob"], none)
Jwerl.verify(jwt, :none)

% signed by RS512
{ok, private_pem} = File.read("path/to/rsa_private_key.pem")
{ok, public_pem} = File.read("path/to/rsa_public.pem")
jwt = Jwerl.sign([name: "bob"], :rs512, private_pem)
Jwerl.verify(jwt, :rs512, public_pem)

% signed by ES256
{ok, private_pem} = File.read("path/to/es_private_key.pem")
{ok, public_pem} = File.read("path/to/es_public.pem")
jwt = Jwerl.sign([name: "bob"], :es256, private_pem)
Jwerl.verify(jwt, :es256, public_pem)

Licence

Copyright (c) 2015, 2016, 2017, 2018, 2019, G-Corp
All rights reserved.

Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:

  1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
  2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
  3. The name of the author may not be used to endorse or promote products derived from this software without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

Modules

jwerl

Contributors

Thanks goes to these wonderful people (emoji key):

Astro
Astro

💻 ⚠️
Gregoire Lejeune
Gregoire Lejeune

💻 🎨 📖 ⚠️
Michał Piotrowski
Michał Piotrowski

💻
JianBo He
JianBo He

💻 📖 ⚠️
Mohammad Maqbool Alam
Mohammad Maqbool Alam

📖
Ricardo Paiva
Ricardo Paiva

💻 ⚠️
Viacheslav Katsuba
Viacheslav Katsuba

💻 🚧

This project follows the all-contributors specification. Contributions of any kind welcome!

About

[MIRROR] Erlang JWT Library

https://gitlab.com/glejeune/jwerl


Languages

Language:Erlang 75.7%Language:Makefile 17.3%Language:Elixir 7.0%