@microsoft/useragent-sdk
Version:
SDK for building decentralized identity wallets and enterprise agents.
30 lines (29 loc) • 697 B
TypeScript
/**
* Enum to define different protection formats
*/
export declare enum ProtectionFormat {
/**
* Format for a flat JSON signature
*/
JwsFlatJson = "JwsFlatJson",
/**
* Format for a compact JSON signature
*/
JwsCompactJson = "JwsCompactJson",
/**
* Format for a general JSON signature
*/
JwsGeneralJson = "JwsGeneralJson",
/**
* Format for a flat JSON encryption
*/
JweFlatJson = "JweFlatJson",
/**
* Format for a compact JSON encryption
*/
JweCompactJson = "JweCompactJson",
/**
* Format for a general JSON encryption
*/
JweGeneralJson = "JweGeneralJson"
}