An open API service indexing awesome lists of open source software.

https://github.com/alejzeis/derelictjwt

UNOFFICAL Derelict binding to the libjwt library (https://github.com/benmcollins/libjwt)
https://github.com/alejzeis/derelictjwt

binding derelict dlang dub jwt

Last synced: 3 months ago
JSON representation

UNOFFICAL Derelict binding to the libjwt library (https://github.com/benmcollins/libjwt)

Awesome Lists containing this project

README

        

# DerelictJWT [![Build Status](https://ajann.xyz/teamcity/app/rest/builds/buildType:DerelictJWT_LinuxBuildX64/statusIcon?guest=1)](https://ajann.xyz/teamcity/viewType.html?buildTypeId=DerelictJWT_LinuxBuildX64) [![DUB](https://img.shields.io/dub/l/derelict_extras-jwt.svg?style=flat-square)]() [![DUB](https://img.shields.io/dub/v/derelict_extras-jwt.svg?style=flat-square)]() [![DUB](https://img.shields.io/dub/dm/derelict_extras-jwt/latest.svg?style=flat-square)]()
**UNOFFICAL** Derelict binding to the libjwt library (https://github.com/benmcollins/libjwt)

This library is provided under the MIT license, but you still must comply with the terms of the LGPL-2.1 License which
it is released under.

You can find information on how Derelict and shared libraries work [here](https://derelictorg.github.io/compiling.html) and [here.](http://derelictorg.github.io/using.html)

More information on how to use DerelictJWT can be found on the [WIKI.](https://github.com/jython234/DerelictJWT/wiki)

*Sample Code:*
```D
import derelict.jwt.jwt;

void main() {
DerelictJWT.load(); // Load the shared library
// Now you can call libjwt methods
}
```