UNPKG

@azure/cosmos

Version:
15 lines 491 B
// 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