1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
|

# JWT C Library
[](https://app.travis-ci.com/github/benmcollins/libjwt) [](http://codecov.io/github/benmcollins/libjwt?branch=master)
[](https://jwt.io)
## Build Requirements
- https://github.com/akheron/jansson
- OpenSSL or GnuTLS
## Documentation
[GitHub Pages](https://benmcollins.github.io/libjwt/)
## Pre-built Packages
LibJWT is available in most Linux distributions as well as through [Homebrew](https://brew.sh/)
for macOS and Windows.
## Build Instructions
**With GNU Make:** Use ``autoreconf -i`` to create project files and run ``./configure``.
- ``make all``: build library.
- ``make check``: build and run test suite.
- See INSTALL file for more details on GNU Auto tools and GNU Make.
- Use the ``--without-openssl`` with ``./configure`` to use GnuTLS.
|