UNPKG

@guarani/jose

Version:

Implementation of the RFCs of the JOSE Working Group.

15 lines (14 loc) 332 B
import { JsonWebKeyParams } from '../../jsonwebkey.params'; /** * Parameters of the Octet Sequence JSON Web Key. */ export interface OctKeyParams extends JsonWebKeyParams { /** * Type of the JSON Web Key. */ readonly kty: 'oct'; /** * Base64Url encoded Octet Sequence. */ readonly k: string; }