UNPKG

@microsoft/useragent-sdk

Version:

SDK for building decentralized identity wallets and enterprise agents.

21 lines (20 loc) 451 B
/// <reference types="node" /> /// <reference types="pouchdb-core" /> import { JwsHeader } from "./IJwsGeneralJson"; /** * JWS compact format */ export default interface IJwsCompact { /** * The protected (signed) header. */ protected?: JwsHeader | undefined; /** * The application-specific non-encoded payload. */ payload: Buffer; /** * The signature */ signature: string; }