UNPKG

@azure/msal-node-extensions

Version:

![npm (scoped)](https://img.shields.io/npm/v/@azure/msal-node-extensions) ![npm](https://img.shields.io/npm/dw/@azure/msal-node-extensions)

25 lines (23 loc) 883 B
/*! @azure/msal-node-extensions v5.2.2 2026-05-19 */ 'use strict'; /* * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. */ /** * Specifies the scope of the data protection - either the current user or the local * machine. * * You do not need a key to protect or unprotect the data. * If you set the Scope to CurrentUser, only applications running on your credentials can * unprotect the data; however, that means that any application running on your credentials * can access the protected data. If you set the Scope to LocalMachine, any full-trust * application on the computer can unprotect, access, and modify the data. * */ const DataProtectionScope = { CurrentUser: "CurrentUser", LocalMachine: "LocalMachine", }; export { DataProtectionScope }; //# sourceMappingURL=DataProtectionScope.mjs.map