UNPKG

@microsoft/useragent-sdk

Version:

SDK for building decentralized identity wallets and enterprise agents.

17 lines (16 loc) 386 B
/// <reference types="node" /> /// <reference types="pouchdb-core" /> import { JweHeader } from "./IJweGeneralJson"; /** * JWE recipient object used by the general JSON */ export default interface IJweRecipient { /** * The unprotected (unverified) header. */ header?: JweHeader; /** * The encrypted key. */ encrypted_key: Buffer; }