System.Security.Cryptography.ProtectedData 9.0.4
Prefix ReservedSee the version list below for details.
dotnet add package System.Security.Cryptography.ProtectedData --version 9.0.4
NuGet\Install-Package System.Security.Cryptography.ProtectedData -Version 9.0.4
<PackageReference Include="System.Security.Cryptography.ProtectedData" Version="9.0.4" />
<PackageVersion Include="System.Security.Cryptography.ProtectedData" Version="9.0.4" />
<PackageReference Include="System.Security.Cryptography.ProtectedData" />
paket add System.Security.Cryptography.ProtectedData --version 9.0.4
#r "nuget: System.Security.Cryptography.ProtectedData, 9.0.4"
#addin nuget:?package=System.Security.Cryptography.ProtectedData&version=9.0.4
#tool nuget:?package=System.Security.Cryptography.ProtectedData&version=9.0.4
About
System.Security.Cryptography.ProtectedData offers a simplified interface for utilizing Microsoft Windows DPAPI's CryptProtectData and CryptUnprotectData functions.
Note: Since it relies on Windows DPAPI, this package is only supported on Windows platforms. For more complex cryptographic operations or cross-platform support, consider the System.Security.Cryptography namespace.
Key Features
- Built upon the robust and secure Windows Data Protection API (DPAPI).
- Data can be protected either for current process or for any process on the machine.
- Scope of protection can be defined either to the current user or the local machine.
How to Use
Utilizing this package is quite simple, and it mainly revolves around two methods: Protect
and Unprotect
.
Here, originalData
is the data you want to protect, optionalEntropy
is an additional byte array used to increase encryption complexity, and DataProtectionScope
specifies whether the data protection should apply to the current user or the machine.
using System.Security.Cryptography;
using System.Text;
byte[] originalData = Encoding.UTF8.GetBytes("This is a secret");
byte[] optionalEntropy = new byte[64];
Random.Shared.NextBytes(optionalEntropy);
// To protect:
byte[] encryptedData = ProtectedData.Protect(
originalData,
optionalEntropy,
DataProtectionScope.CurrentUser);
// To unprotect:
byte[] decryptedData = ProtectedData.Unprotect(
encryptedData,
optionalEntropy,
DataProtectionScope.CurrentUser);
Main Types
The main type provided by this library is:
System.Security.Cryptography.ProtectedData
Additional Documentation
Related Packages
- PKCS and CMS algorithms: System.Security.Cryptography.Pkcs
Feedback & Contributing
System.Security.Cryptography.ProtectedData is released as open source under the MIT license. Bug reports and contributions are welcome at the repository.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 is compatible. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net461 was computed. net462 is compatible. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. monoandroid10 is compatible. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. monotouch10 is compatible. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. xamarinios10 is compatible. |
Xamarin.Mac | xamarinmac was computed. xamarinmac20 is compatible. |
Xamarin.TVOS | xamarintvos was computed. xamarintvos10 is compatible. |
Xamarin.WatchOS | xamarinwatchos was computed. xamarinwatchos10 is compatible. |
.NETFramework 4.6.2
- No dependencies.
.NETStandard 2.0
- System.Memory (>= 4.5.5)
net8.0
- No dependencies.
net9.0
- No dependencies.
NuGet packages (240)
Showing the top 5 NuGet packages that depend on System.Security.Cryptography.ProtectedData:
Package | Downloads |
---|---|
System.Configuration.ConfigurationManager Provides types that support using XML configuration files (app.config). This package exists only to support migrating existing .NET Framework code that already uses System.Configuration. When writing new code, use another configuration system instead, such as Microsoft.Extensions.Configuration. | |
Microsoft.Identity.Client.Extensions.Msal This package contains the public client (desktop) caching to Microsoft Authentication Library for .NET (MSAL.NET) | |
Microsoft.VisualStudio.Web.CodeGenerators.Mvc Code Generators for ASP.NET Core MVC. Contains code generators for MVC Controllers and Views. | |
Microsoft.VisualStudio.Web.CodeGeneration.Design Code Generation tool for ASP.NET Core. Contains the dotnet-aspnet-codegenerator command used for generating controllers and views. | |
Microsoft.VisualStudio.Web.CodeGeneration Contains the CodeGenCommand that finds the appropriate code generator and invokes it from project dependencies. |
repositories (68)
Showing the top 20 popular repositories that depend on System.Security.Cryptography.ProtectedData:
Repository | Stars |
---|---|
BeyondDimension/Tools 🛠「Watt Toolkit」是一个开源跨平台的多功能 工具箱。 | |
rocksdanister/lively Free and open-source software that allows users to set animated desktop wallpapers and screensavers powered by WinUI 3. | |
Jackett/Jackett API Support for your favorite trackers | |
JustArchiNET/ArchiFarm C# application with primary purpose of farming cards from multiple accounts simultaneously. | |
mRemoteNG/mRemoteNG mRemoteNG is the next generation of mRemote, open source, tabbed, multi-protocol, remote connections manager. | |
Azure/azure-sdk-for-net This repository is for active development of the Azure SDK for .NET. For consumers of the SDK we recommend visiting our public developer docs at https://learn.microsoft.com/dotnet/azure/ or our versioned developer docs at https://azure..io/azure-sdk-for-net. | |
win-acme/win-acme A simple ACME client for Windows (for use with Let's Encrypt et al.) | |
actions/runner The Runner for Actions :rocket: | |
microsoft/perfview PerfView is a CPU and memory performance-analysis tool | |
ravendb/ravendb ACID Document Database | |
GlitchEnzo/NuGetForUnity A NuGet Package Manager for Unity | |
cyanfish/naps2 Scan documents to PDF and more, as simply as possible. | |
dotnet/sdk Core functionality needed to create .NET Core projects, that is shared between Visual Studio and CLI | |
reactiveui/Akavache An asynchronous, persistent key-value store created for writing desktop and mobile applications, based on SQLite3. Akavache is great for both storing important data as well as cached local data that expires. | |
googleprojectzero/sandbox-attacksurface-analysis-tools Set of tools to analyze Windows sandboxes for exposed attack surface. | |
dotnet/wcf This repo contains the client-oriented WCF libraries that enable applications built on .NET Core to communicate with WCF services. | |
CoreWCF/CoreWCF Main repository for the Core WCF project | |
microsoft/PowerApps-Samples Sample code for Power Apps, including Dataverse, model-driven apps, canvas apps, Power Apps component framework, portals, and AI Builder. | |
webprofusion/certify Professional ACME Client for Windows. Certificate Management UI, powered by Let's Encrypt and compatible with all ACME v2 CAs. Used by over 150,000 organisations. Remember to Star us! Download from certifytheweb.com | |
CollapseLauncher/Collapse An Advanced Launcher for miHoYo/HoYoverse Games |