UNPKG

@microsoft/useragent-sdk

Version:

SDK for building decentralized identity wallets and enterprise agents.

28 lines (22 loc) 721 B
/*--------------------------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------*/ 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 }