Persilsoft.Encryptors
1.0.4
dotnet add package Persilsoft.Encryptors --version 1.0.4
NuGet\Install-Package Persilsoft.Encryptors -Version 1.0.4
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Persilsoft.Encryptors" Version="1.0.4" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Persilsoft.Encryptors --version 1.0.4
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Persilsoft.Encryptors, 1.0.4"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Persilsoft.Encryptors as a Cake Addin #addin nuget:?package=Persilsoft.Encryptors&version=1.0.4 // Install Persilsoft.Encryptors as a Cake Tool #tool nuget:?package=Persilsoft.Encryptors&version=1.0.4
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
Persilsoft.Encryptors
Contains types for encrypting/decrypting using algorithms like AES
Example
First, you need to register the service by providing the values for Key and Iv.
using ServiceCollectionExtensions;
// Each one can modify the key and seed values as they like, but let's remember that the AES algorithm requires 32 and 16 characters as the key and seed, respectively.
string Key = "UFl8CsH01UFCYDQPKrP06Rpkcf2MQA7Q";
string Iv = "Ucfz6KcbLsWiM9aX";
builder.Services.AddAesEncryptor(Key, IV);
Or reading the values from Configuration
using Persilsoft.Encryptors.Options;
using ServiceCollectionExtensions;
Action<EncryptorOptions> configurator = options =>
builder.Configuration.GetSection(EncryptorOptions.Sectionkey).Bind(options);
builder.Services.AddAesEncryptor(configurator);
In this second option, the values must be configured as follows in the appsetting.json file
{
"EncriptorOptions": {
"Key": "UFl8CsH01UFCYDQPKrP06Rpkcf2MQA7Q",
"Iv": "Ucfz6KcbLsWiM9aX"
}
}
Finally, you can use it.
using Persilsoft.Encryptors.Interfaces;
app.MapPost("/aes/encrypt", (IAesEncryptor encryptor, string text) =>
{
return Results.Ok(encryptor.Encrypt(text));
})
.WithTags("Aes");
app.MapPost("/aes/decrypt", (IAesEncryptor encryptor, string encryptText) =>
{
return Results.Ok(encryptor.Decrypt(encryptText));
})
.WithTags("Aes");
Note:
You can use constructor injection
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. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net8.0
- Microsoft.Extensions.Options (= 8.0.2)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.