UNPKG

@guarani/jose

Version:

Implementation of the RFCs of the JOSE Working Group.

11 lines (10 loc) 261 B
import { JsonWebKeyParams } from '../jwk/jsonwebkey.params'; /** * Parameters of the JSON Web Key Set. */ export interface JsonWebKeySetParams { /** * JSON Web Keys registered at the JSON Web Key Set. */ readonly keys: JsonWebKeyParams[]; }