Stechsoft.Encryption.AES
2.0.0
dotnet add package Stechsoft.Encryption.AES --version 2.0.0
NuGet\Install-Package Stechsoft.Encryption.AES -Version 2.0.0
<PackageReference Include="Stechsoft.Encryption.AES" Version="2.0.0" />
<PackageVersion Include="Stechsoft.Encryption.AES" Version="2.0.0" />
<PackageReference Include="Stechsoft.Encryption.AES" />
paket add Stechsoft.Encryption.AES --version 2.0.0
#r "nuget: Stechsoft.Encryption.AES, 2.0.0"
#addin nuget:?package=Stechsoft.Encryption.AES&version=2.0.0
#tool nuget:?package=Stechsoft.Encryption.AES&version=2.0.0
Stechsoft.Encryption.AES
Overview
Stechsoft.Encryption.AES
is a .NET library that provides encryption and secret management functionalities. It ensures secure data encryption with application-specific private keys and integrates with Key Vault for secure storage.
Features
- AES-256 Encryption with application-specific keys
- Secure secret management with Key Vault integration
- Easy-to-use API for encrypting and decrypting data
- Configurable key storage mechanism
Installation
Using NuGet Package Manager
Install-Package Stechsoft.Encryption.AES
Using .NET CLI
dotnet add package Stechsoft.Encryption.AES
Usage
1. Encryption and Decryption
var encryptionService = new EncryptionService();
string encryptedText = encryptionService.Encrypt("SensitiveData");
string decryptedText = encryptionService.Decrypt(encryptedText);
2. Secret Management
var secretManager = new SecretManager(httpClient, "your-secret-key", "your-app-id");
string secretValue = await secretManager.GetSecretAsync("SecretName");
Configuration
The encryption keys are stored in a file (encryption_keys.json
) inside the application's base directory. Each application has its own private key for security.
To manually configure the key storage path:
var encryptionService = new EncryptionService("custom-path-to-key-file.json");
Requirements
- .NET 8.0 or later
Contributing
Pull requests are welcome. For major changes, please open an issue first to discuss the proposed changes.
License
This project is licensed under the MIT License - see the LICENSE file for details.
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. net9.0 was computed. 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. |
-
net8.0
- No dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.