@azure/service-bus
Version:
Azure Service Bus SDK for JavaScript
13 lines • 427 B
JavaScript
// 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