fm.Extensions.DataProtection
5.0.2
dotnet add package fm.Extensions.DataProtection --version 5.0.2
NuGet\Install-Package fm.Extensions.DataProtection -Version 5.0.2
<PackageReference Include="fm.Extensions.DataProtection" Version="5.0.2" />
paket add fm.Extensions.DataProtection --version 5.0.2
#r "nuget: fm.Extensions.DataProtection, 5.0.2"
// Install fm.Extensions.DataProtection as a Cake Addin #addin nuget:?package=fm.Extensions.DataProtection&version=5.0.2 // Install fm.Extensions.DataProtection as a Cake Tool #tool nuget:?package=fm.Extensions.DataProtection&version=5.0.2
Makes using the Microsoft.AspNet.DataProtection package more convenient, especially when using IAuthenticatedEncryptor
Commonly used types:
AuthenticatedEncryptorExtensions
EncryptorEncoding
SecretKey
Examples:
SecretKey key = new SecretKey(new Secret(EncryptorEncoding.UTF8.GetBytes("Password")), this.GetRequiredService<IAuthenticatedEncryptorFactory>());
IAuthenticatedEncryptor encryptor = key.CreateEncryptor();
encryptor.DecryptToString(encryptor.Encrypt("Input", "AAD"), "AAD").ShouldBe("Input");
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | 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. |
-
net8.0
- Microsoft.AspNetCore.DataProtection (>= 8.0.10)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Update references