namespace Jwt { /// /// Specifies the hashing algorithm being used used. /// public enum JwtHashAlgorithm { /// /// Hash-based Message Authentication Code (HMAC) using SHA256. /// HS256, /// /// Hash-based Message Authentication Code (HMAC) using SHA384. /// HS384, /// /// Hash-based Message Authentication Code (HMAC) using SHA512. /// HS512 } }