MCPcopy Create free account
hub / github.com/arun11299/cpp-jwt / algorithm

Enum algorithm

include/jwt/algorithm.hpp:204–218  ·  view source on GitHub ↗

* JWT signing algorithm types. */

Source from the content-addressed store, hash-verified

202 * JWT signing algorithm types.
203 */
204enum class algorithm
205{
206 NONE = 0,
207 HS256,
208 HS384,
209 HS512,
210 RS256,
211 RS384,
212 RS512,
213 ES256,
214 ES384,
215 ES512,
216 UNKN,
217 TERM,
218};
219
220
221/**

Callers 9

TESTFunction · 0.50
TESTFunction · 0.50
TESTFunction · 0.50
TESTFunction · 0.50
TESTFunction · 0.50
TESTFunction · 0.50
mainFunction · 0.50
mainFunction · 0.50
mainFunction · 0.50

Calls

no outgoing calls

Tested by

no test coverage detected