Enum JwtSignatureAlgorithm
- Namespace
- Auth0.AuthenticationApi
- Assembly
- Auth0.AuthenticationApi.dll
Represents possible signing algorithms for JsonWebTokens (JWTs).
public enum JwtSignatureAlgorithm
Fields
HS256 = 1
HS256 symmetric algorithm verified using client secret.
Should only be used in environments where a client secret can be kept secure. e.g. Web server-side applications. NOT mobile or desktop.
RS256 = 0
RS256 asymmetric algorithm verified using public key via JWKS.