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
                    
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="Stechsoft.Encryption.AES" Version="2.0.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Stechsoft.Encryption.AES" Version="2.0.0" />
                    
Directory.Packages.props
<PackageReference Include="Stechsoft.Encryption.AES" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Stechsoft.Encryption.AES --version 2.0.0
                    
#r "nuget: Stechsoft.Encryption.AES, 2.0.0"
                    
#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.
#addin nuget:?package=Stechsoft.Encryption.AES&version=2.0.0
                    
Install Stechsoft.Encryption.AES as a Cake Addin
#tool nuget:?package=Stechsoft.Encryption.AES&version=2.0.0
                    
Install Stechsoft.Encryption.AES as a Cake Tool

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 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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • 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.

Version Downloads Last updated
2.0.0 108 3/14/2025
1.0.0 104 3/14/2025