JWT-CPP v0.7.0
A header only library for creating and validating JSON Web Tokens (JWT) in C++
Loading...
Searching...
No Matches
defaults.h
1#ifndef JWT_CPP_BOOST_JSON_DEFAULTS_H
2#define JWT_CPP_BOOST_JSON_DEFAULTS_H
3
4#ifndef JWT_DISABLE_PICOJSON
5#define JWT_DISABLE_PICOJSON
6#endif
7
8#include "traits.h"
9
10namespace jwt {
18
24 return verify<default_clock, traits::boost_json>(default_clock{});
25 }
26
34
35#ifndef JWT_DISABLE_BASE64
43 inline decoded_jwt<traits::boost_json> decode(const std::string& token) {
45 }
46#endif
47
59 template<typename Decode>
60 decoded_jwt<traits::boost_json> decode(const std::string& token, Decode decode) {
62 }
63
70 inline jwk<traits::boost_json> parse_jwk(const traits::boost_json::string_type& token) {
71 return jwk<traits::boost_json>(token);
72 }
73
80 inline jwks<traits::boost_json> parse_jwks(const traits::boost_json::string_type& token) {
81 return jwks<traits::boost_json>(token);
82 }
83
89} // namespace jwt
90
91#endif // JWT_CPP_BOOST_JSON_DEFAULTS_H
a class to store a generic JSON value as claim
Definition jwt.h:2307
Definition jwt.h:2847
Definition jwt.h:2712
JSON Web Key.
Definition jwt.h:3581
JWK Set.
Definition jwt.h:3792
Definition jwt.h:3318
JSON Web Token.
Definition base.h:21
verifier< default_clock, traits::boost_json > verify()
Definition defaults.h:23
jwk< json_traits > parse_jwk(const typename json_traits::string_type &jwk_)
Definition jwt.h:3953
jwks< json_traits > parse_jwks(const typename json_traits::string_type &jwks_)
Definition jwt.h:3967
builder< default_clock, traits::boost_json > create()
Definition defaults.h:31
decoded_jwt< json_traits > decode(const typename json_traits::string_type &token, Decode decode)
Decode a token. This can be used to to help access important feild like 'x5c' for verifying tokens....
Definition jwt.h:3928
Definition jwt.h:3884
Definition jwt.h:3099