jwt 0.1.0

A Simple D implementation of JSON Web Tokens


To use this package, run the following command in your project's root directory:

Manual usage
Put the following dependency into your project's dependences section:

JWT

A Simple D implementation of JSON Web Tokens.

Supported Algorithms

  • none
  • HS256
  • HS384
  • HS512

How To Use

Encoding

import jwt.jwt;
import jwt.exceptions;
import jwt.algorithms;
import std.json;
import std.datetime;

void main() {

    Token token = new Token(JWTAlgorithm.HS512);

    token.claims.exp = Clock.currTime.toUnixTime();

    token.claims.set("id", 60119);

    string encodedToken = token.encode("supersecret");

    // work with the encoded token

}

Verifying

import jwt.jwt;
import jwt.exceptions;
import jwt.algorithms;

void main() {

    // get encoded token from header or ...

    try {

        Token token = verify(encodedToken, "supersecret", JWTAlgorithm.HS512);

        writeln(token.claims.getInt("id"));

    } catch (InvalidSignature e) {

        writeln("This token has been tampered with");

    } catch (ExpiredException e) {

        writeln("Token has expired");

    }

}

Limitations

  • ##### Since Phobos doesn't support RSA algorithms this library only provides HMAC signing.
  • ##### Currently this library only supports primitive data types(bool, string, int, float, double, null) in claims(working to remedy the situation)

Note

this library uses code and ideas from jwtd and jwt-go

Authors:
  • Zelalem Mekonen
Dependencies:
none
Versions:
0.4.0 2016-Sep-18
0.3.0 2016-Sep-17
0.2.0 2016-Sep-16
0.1.0 2016-Sep-15
~master 2017-Feb-10
Show all 5 versions
Download Stats:
  • 5 downloads today

  • 41 downloads this week

  • 259 downloads this month

  • 10981 downloads total

Score:
2.4
Short URL:
jwt.dub.pm