39 lines
1.2 KiB
JavaScript
39 lines
1.2 KiB
JavaScript
/*! @azure/msal-common v14.4.0 2023-11-07 */
|
|
'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);
|
|
},
|
|
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
|