@azure/data-tables
Version:
An isomorphic client library for the Azure Tables service.
8 lines • 356 B
JavaScript
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
import { createHmac } from "crypto";
export function computeHMACSHA256(stringToSign, accountKey) {
const key = Buffer.from(accountKey, "base64");
return createHmac("sha256", key).update(stringToSign, "utf8").digest("base64");
}
//# sourceMappingURL=computeHMACSHA256.js.map