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_NLOHMANN_JSON_DEFAULTS_H
2#define JWT_CPP_NLOHMANN_JSON_DEFAULTS_H
3
4#ifndef JWT_DISABLE_PICOJSON
5#define JWT_DISABLE_PICOJSON
6#endif
7
8#include "traits.h"
9
10namespace jwt {
17 using claim = basic_claim<traits::nlohmann_json>;
18
23 inline verifier<default_clock, traits::nlohmann_json> verify() {
24 return verify<default_clock, traits::nlohmann_json>(default_clock{});
25 }
26
31 inline builder<default_clock, traits::nlohmann_json> create() {
32 return builder<default_clock, traits::nlohmann_json>(default_clock{});
33 }
34
35#ifndef JWT_DISABLE_BASE64
43 inline decoded_jwt<traits::nlohmann_json> decode(const std::string& token) {
44 return decoded_jwt<traits::nlohmann_json>(token);
45 }
46#endif
47
59 template<typename Decode>
60 decoded_jwt<traits::nlohmann_json> decode(const std::string& token, Decode decode) {
62 }
63
70 inline jwk<traits::nlohmann_json> parse_jwk(const traits::nlohmann_json::string_type& token) {
71 return jwk<traits::nlohmann_json>(token);
72 }
73
80 inline jwks<traits::nlohmann_json> parse_jwks(const traits::nlohmann_json::string_type& token) {
81 return jwks<traits::nlohmann_json>(token);
82 }
83
88 using verify_context = verify_ops::verify_context<traits::nlohmann_json>;
89} // namespace jwt
90
91#endif // JWT_CPP_NLOHMANN_JSON_DEFAULTS_H
Definition jwt.h:2712
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
basic_claim< traits::boost_json > claim
a class to store a generic Boost.JSON value as claim
Definition defaults.h:17
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
verify_ops::verify_context< traits::boost_json > verify_context
Definition defaults.h:88