10Duke Scale C++ Client
Loading...
Searching...
No Matches
JWTParser.h
1#ifndef TENDUKE_JWT_JWTPARSER_H
2#define TENDUKE_JWT_JWTPARSER_H
3
4#include "./JWT.h"
5
6#include <string>
7
8namespace tenduke { namespace jwt {
9
10
15{
16public:
17 virtual ~JWTParser() = default;
18
27 virtual JWT from(const std::string &value) const = 0;
28};
29
30
31}}
32
33#endif // TENDUKE_JWT_JWTPARSER_H
Parses JWT.
Definition JWTParser.h:15
virtual JWT from(const std::string &value) const =0
Parses tenduke::jwt::JWT from given string.
Very simple JWT implementation.
Definition JWT.h:31
Support for JSON Web Tokens.
Definition DefaultJWTParser.h:11
Root for classes, functions and globals of 10Duke C++ Client.
Definition BackendConfiguration.h:7