verifiablecredentials-crypto-sdk-typescript-keystore
Version:
Package for managing keys in a key store.
30 lines (29 loc) • 668 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"
}