@azure/cosmos
Version:
Microsoft Azure Cosmos DB Service Node.js SDK for NOSQL API
15 lines • 491 B
JavaScript
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
export class DataEncryptionKey {
encryptionKeyBuffer;
macKeyBuffer;
ivKeyBuffer;
name;
constructor(_rootKey, _name) {
throw new Error("Client-side Encryption not supported in browser environment");
}
}
export function createHmac(_algorithm, _key) {
throw new Error("Client-side hmac generator not supported in browser environment");
}
//# sourceMappingURL=DataEncryptionKey.js.map