@microsoft/useragent-sdk
Version:
SDK for building decentralized identity wallets and enterprise agents.
17 lines (16 loc) • 411 B
TypeScript
import IJweRecipient from './IJweRecipient';
import { TSMap } from 'typescript-map';
import IJweBase from './IJweBase';
/**
* Defines a header in JWE
*/
export declare type JweHeader = TSMap<string, string>;
/**
* JWE general json format
*/
export default interface IJweGeneralJson extends IJweBase {
/**
* The recipients that can decrypt
*/
recipients: IJweRecipient[];
}