You are here

public static property JWT::$supported_algs in Auth0 Single Sign On 8.2

File

vendor/firebase/php-jwt/src/JWT.php, line 44

Class

JWT
JSON Web Token implementation, based on this spec: https://tools.ietf.org/html/rfc7519

Namespace

Firebase\JWT

Code

public static $supported_algs = array(
  'ES256' => array(
    'openssl',
    'SHA256',
  ),
  'HS256' => array(
    'hash_hmac',
    'SHA256',
  ),
  'HS384' => array(
    'hash_hmac',
    'SHA384',
  ),
  'HS512' => array(
    'hash_hmac',
    'SHA512',
  ),
  'RS256' => array(
    'openssl',
    'SHA256',
  ),
  'RS384' => array(
    'openssl',
    'SHA384',
  ),
  'RS512' => array(
    'openssl',
    'SHA512',
  ),
);