UNPKG

hono

Version:

Web framework built on Web Standards

22 lines (21 loc) 470 B
/** * @module * JSON Web Algorithms (JWA) * https://datatracker.ietf.org/doc/html/rfc7518 */ export declare enum AlgorithmTypes { HS256 = "HS256", HS384 = "HS384", HS512 = "HS512", RS256 = "RS256", RS384 = "RS384", RS512 = "RS512", PS256 = "PS256", PS384 = "PS384", PS512 = "PS512", ES256 = "ES256", ES384 = "ES384", ES512 = "ES512", EdDSA = "EdDSA" } export type SignatureAlgorithm = keyof typeof AlgorithmTypes;