* \brief Converts JWT-CPP errors into generic STL error_codes */
| 153 | * \brief Converts JWT-CPP errors into generic STL error_codes |
| 154 | */ |
| 155 | inline std::error_code make_error_code(rsa_error e) { return {static_cast<int>(e), rsa_error_category()}; } |
| 156 | /** |
| 157 | * \brief Errors related to processing of RSA signatures |
| 158 | */ |
nothing calls this directly
no outgoing calls
no test coverage detected