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 ContributorsHex.pm versionHex.pm downloadsLicense


JWT

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

Support

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<br /> 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](https://github.com/kentcdodds/all-contributors#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](https://github.com/kentcdodds/all-contributors) specification. Contributions of any kind welcome!