| 333 | |
| 334 | |
| 335 | Try<JWT, JWTError> JWT::create(const JSON::Object& payload) |
| 336 | { |
| 337 | const Header header{Alg::None, "JWT"}; |
| 338 | |
| 339 | return JWT(header, payload, None()); |
| 340 | } |
| 341 | |
| 342 | |
| 343 | Try<JWT, JWTError> JWT::create( |
nothing calls this directly
no test coverage detected