@microsoft/useragent-sdk
Version:
SDK for building decentralized identity wallets and enterprise agents.
19 lines (18 loc) • 379 B
TypeScript
import { JweHeader } from "./IJweGeneralJson";
/**
* JWS compact format
*/
export default interface IJwsCompact {
/**
* The protected (signed) header.
*/
protected?: JweHeader | undefined;
/**
* The application-specific non-encoded payload.
*/
payload: string;
/**
* The signature
*/
signature: string;
}