Commit iniziale
This commit is contained in:
44
node_modules/@azure/msal-common/dist/crypto/ICrypto.mjs
generated
vendored
Normal file
44
node_modules/@azure/msal-common/dist/crypto/ICrypto.mjs
generated
vendored
Normal file
@@ -0,0 +1,44 @@
|
||||
/*! @azure/msal-common v15.1.1 2025-02-05 */
|
||||
'use strict';
|
||||
import { createClientAuthError } from '../error/ClientAuthError.mjs';
|
||||
import { methodNotImplemented } from '../error/ClientAuthErrorCodes.mjs';
|
||||
|
||||
/*
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License.
|
||||
*/
|
||||
const DEFAULT_CRYPTO_IMPLEMENTATION = {
|
||||
createNewGuid: () => {
|
||||
throw createClientAuthError(methodNotImplemented);
|
||||
},
|
||||
base64Decode: () => {
|
||||
throw createClientAuthError(methodNotImplemented);
|
||||
},
|
||||
base64Encode: () => {
|
||||
throw createClientAuthError(methodNotImplemented);
|
||||
},
|
||||
base64UrlEncode: () => {
|
||||
throw createClientAuthError(methodNotImplemented);
|
||||
},
|
||||
encodeKid: () => {
|
||||
throw createClientAuthError(methodNotImplemented);
|
||||
},
|
||||
async getPublicKeyThumbprint() {
|
||||
throw createClientAuthError(methodNotImplemented);
|
||||
},
|
||||
async removeTokenBindingKey() {
|
||||
throw createClientAuthError(methodNotImplemented);
|
||||
},
|
||||
async clearKeystore() {
|
||||
throw createClientAuthError(methodNotImplemented);
|
||||
},
|
||||
async signJwt() {
|
||||
throw createClientAuthError(methodNotImplemented);
|
||||
},
|
||||
async hashString() {
|
||||
throw createClientAuthError(methodNotImplemented);
|
||||
},
|
||||
};
|
||||
|
||||
export { DEFAULT_CRYPTO_IMPLEMENTATION };
|
||||
//# sourceMappingURL=ICrypto.mjs.map
|
||||
Reference in New Issue
Block a user