@azure/cosmos
Version:
Microsoft Azure Cosmos DB Service Node.js SDK for NOSQL API
10 lines • 378 B
TypeScript
/**
* The type of encryption to be performed.
*/
export declare enum EncryptionType {
/** Deterministic type will always produce same encrypted value for same plaintext. */
DETERMINISTIC = "Deterministic",
/** Randomized type will produce different encrypted value for same plaintext. */
RANDOMIZED = "Randomized"
}
//# sourceMappingURL=EncryptionType.d.ts.map