UNPKG

@azure/service-bus

Version:
13 lines 427 B
// Copyright (c) Microsoft Corporation. // Licensed under the MIT license. // Copyright (c) Microsoft Corporation. // Licensed under the MIT License. import crypto from "crypto"; /** * @internal */ export async function generateKey(secret, stringToSign) { const result = encodeURIComponent(crypto.createHmac("sha256", secret).update(stringToSign).digest("base64")); return result; } //# sourceMappingURL=crypto.js.map