UNPKG

@microsoft/useragent-sdk

Version:

SDK for building decentralized identity wallets and enterprise agents.

12 lines (11 loc) 393 B
import CryptoFactory from "../plugin/CryptoFactory"; import { TSMap } from "typescript-map"; import { IPayloadProtection } from "./IPayloadProtection"; /** * Interface defining options for the selected protocol. */ export default interface IPayloadProtectionOptions { cryptoFactory: CryptoFactory; payloadProtection: IPayloadProtection; options: TSMap<string, any>; }