UNPKG

@azure/core-amqp

Version:

Common library for amqp based azure sdks like @azure/event-hubs.

8 lines 318 B
// Copyright (c) Microsoft Corporation. // Licensed under the MIT License. import { createHmac } from "node:crypto"; export async function signString(key, toSign) { const hmac = createHmac("sha256", key).update(toSign).digest("base64"); return encodeURIComponent(hmac); } //# sourceMappingURL=hmacSha256.js.map