@microsoft/useragent-sdk
Version:
SDK for building decentralized identity wallets and enterprise agents.
19 lines (18 loc) • 465 B
TypeScript
/// <reference types="node" />
/// <reference types="pouchdb-core" />
import { JweHeader } from "./IJweGeneralJson";
import IJweRecipient from "./IJweRecipient";
/**
* JWS signature used by the general JSON
*/
export default class JweRecipient implements IJweRecipient {
/**
* The unprotected (unverified) header.
*/
header?: JweHeader;
/**
* The JWE signature.
*/
encrypted_key: Buffer;
constructor();
}