* Get algorithm claim * \return algorithm as string * \throw std::runtime_error If claim was not present * \throw std::bad_cast Claim was present but not a string (Should not happen in a valid token) */
| 3902 | * \throw std::bad_cast Claim was present but not a string (Should not happen in a valid token) |
| 3903 | */ |
| 3904 | typename json_traits::string_type get_algorithm() const { return get_jwk_claim("alg").as_string(); } |
| 3905 | |
| 3906 | /** |
| 3907 | * Get key id claim |