JWT-CPP v0.7.0
A header only library for creating and validating JSON Web Tokens (JWT) in C++
|
There's a number of options to choice from.
It's strongly recommended to use a package manager, as JWT-CPP has dependencies for both cryptography and JSON libraries, having a tool to do the heavily lifting can be ideal. Examples of a C and C++ package manager are Conan and vcpkg. If the version is out of date please check with their respective communities before opening and issue here.
When manually adding this dependency, and the dependencies this has, check the GitHub Actions and Workflows for some inspiration about how to go about it.
Looking for ways to contribute? Help by adding JWT-CPP to your favorite package manager! Nixpkgs for example. Currently many are behind the latest.
Simply downloading the include/
directory is possible. Make sure the jwt-cpp/
subdirectories is visible during compilation. This does require correctly linking to OpenSSL or alternative cryptography library.
The minimum is jwt.h
but you will need to add the defines:
In addition to providing your own JSON traits implementation, see traits.md for more information.
Using find_package
is recommended. Step you environment by installing OpenSSL. Once complete, configure and install the jwt-cpp
target using CMake.
A simple installation of JWT-CPP may look like
Then from your own project
There's also the possibility of using FetchContent
in pull this this project to your build tree.
Lastly, you can use add_subdirectory
, this is untested but should work.