@microsoft/useragent-sdk
Version:
SDK for building decentralized identity wallets and enterprise agents.
19 lines (18 loc) • 506 B
TypeScript
import IPayloadProtectionOptions from '../protocols/IPayloadProtectionOptions';
/**
* Interface used for protection strategy
*/
export interface IPayloadProtectionStrategy {
/**
* Get or set a value to enable or disable message signing
*/
enabled: boolean;
/**
* Get or set the serialization format.
*/
serializationFormat: string;
/**
* Options used for the protection mechanisms
*/
protectionOptions: IPayloadProtectionOptions;
}