@microsoft/useragent-sdk
Version:
SDK for building decentralized identity wallets and enterprise agents.
18 lines (17 loc) • 392 B
TypeScript
/// <reference types="node" />
/// <reference types="pouchdb-core" />
import IJweBase from './IJweBase';
import { JweHeader } from './IJweGeneralJson';
/**
* JWS flattened json format
*/
export default interface IJweFlatJson extends IJweBase {
/**
* The encrypted key.
*/
encrypted_key: Buffer;
/**
* The header.
*/
header: JweHeader;
}