mirror of
https://github.com/gchq/CyberChef.git
synced 2025-04-24 08:46:19 -04:00
24 lines
348 B
JavaScript
24 lines
348 B
JavaScript
/**
|
|
* JWT resources
|
|
*
|
|
* @author mt3571 [mt3571@protonmail.com]
|
|
* @copyright Crown Copyright 2020
|
|
* @license Apache-2.0
|
|
*/
|
|
|
|
|
|
/**
|
|
* List of the JWT algorithms that can be used
|
|
*/
|
|
export const JWT_ALGORITHMS = [
|
|
"HS256",
|
|
"HS384",
|
|
"HS512",
|
|
"RS256",
|
|
"RS384",
|
|
"RS512",
|
|
"ES256",
|
|
"ES384",
|
|
"ES512",
|
|
"None"
|
|
];
|