summaryrefslogtreecommitdiffstats
path: root/libraries/cpp-jwt/README
diff options
context:
space:
mode:
author Steven Voges <svoges.sbo@gmail.com>2022-09-24 03:00:10 +0100
committer Willy Sudiarto Raharjo <willysr@slackbuilds.org>2022-09-25 13:59:45 +0700
commit064f4df1ea0ce38a168cc8b6132b5bfd879e2fd6 (patch)
tree43a53ea2a4e17923dbfeeb6f2c1b1705ce1c9683 /libraries/cpp-jwt/README
parent22e5ca35af6d3d51ec8228766dd2dcf6eb487f5e (diff)
downloadslackbuilds-064f4df1ea0ce38a168cc8b6132b5bfd879e2fd6.tar.gz
slackbuilds-064f4df1ea0ce38a168cc8b6132b5bfd879e2fd6.tar.xz
libraries/cpp-jwt: Added (JWT for C++)
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'libraries/cpp-jwt/README')
-rw-r--r--libraries/cpp-jwt/README8
1 files changed, 8 insertions, 0 deletions
diff --git a/libraries/cpp-jwt/README b/libraries/cpp-jwt/README
new file mode 100644
index 0000000000..080ceaef3d
--- /dev/null
+++ b/libraries/cpp-jwt/README
@@ -0,0 +1,8 @@
+JSON Web Token library for C++
+
+For the uninitiated, JSON Web Token(JWT) is a JSON based standard
+(RFC-7519) for creating assertions or access tokens that consists of
+some claims (encoded within the assertion). This assertion can be used
+in some kind of bearer authentication mechanism that the server will
+provide to clients, and the clients can make use of the provided
+assertion for accessing resources.