LightweightEncryption 1.0.1

dotnet add package LightweightEncryption --version 1.0.1                
NuGet\Install-Package LightweightEncryption -Version 1.0.1                
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="LightweightEncryption" Version="1.0.1" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add LightweightEncryption --version 1.0.1                
#r "nuget: LightweightEncryption, 1.0.1"                
#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 LightweightEncryption as a Cake Addin
#addin nuget:?package=LightweightEncryption&version=1.0.1

// Install LightweightEncryption as a Cake Tool
#tool nuget:?package=LightweightEncryption&version=1.0.1                

LightweightEncryption

Lightweight encryption library provides a fast, simple and strong encryption for your data.

dotnet 8.0 python Nuget

Overview

Lightweight encryption library is based on AES-GCM encryption algorithm and provides support for auto-rotation of encryption keys.

A use case for this library is to encrypt <b>P</b>ersonally <b>I</b>dentifiable <b>I</b>nformation (PII) HTTP request/response in a web server to a LogStore or a Database.

This library uses a pseudo master key to derive encryption keys dynamically at run time for each encryption operation, as a result the encryption keys are never stored in memory or persisted.

There is a master key version that keeps track of the master key to allow for auto-rotation of encryption keys.

The library generates 84-byte header consisting of

  • A 4-byte preamble, a magic value to determine if the payload is encrypted.
  • A 32-byte salt, of which the first 12 bytes are used as Nonce.
  • A 32-byte pseudo master key version.
  • A 16-byte tag.
+----------+---------------------+-----------------------------+-----------+--------------------+
| Preamble |  Salt               |  Pseudo master key version  |  Tag      |  variable payload  |
+----------+---------------------+-----------------------------+-----------+--------------------+
|  4       |  32                 |  32                         |  16       |  0 - n bytes       |
+----------+---------------------+-----------------------------+-----------+--------------------+
Performance
  • OS: Windows 11 Enterprise
  • Processor: Intel64 Family 6 Model 60 Stepping 3 GenuineIntel ~3601 Mhz
  • Processor Architecture: x64
  • Number of Processors: 8
  • RAM: 16 GB
  • Cache: L1 256 KB, L2 1.0 MB, L3 8.0 MB

Amortized results

+----------------+---------------------+---------------------+
| File size      |  Encryption time    |  Decryption time    |
+----------------+---------------------+---------------------+
|  128 kb        |  0.659 msec         |  0.678 msec         |
+----------------+---------------------+---------------------+
|  256 kb        |  0.875 msec         |  0.896 msec         |
+----------------+---------------------+---------------------+
|  512 kb        |  1.207 msec         |  1.299 msec         |
+----------------+---------------------+---------------------+

Prerequisites

Before you begin, ensure you have met the following requirements:

  • You have installed .NET 8 SDK.
  • You are using Visual Studio 2022 or later.
  • You have an Azure subscription and keyvault to store the pseudo master key and master key version.

Using LightweightEncryption

via NuGet

LightweightEncryption NuGet Package

Follow the instructions in the link above to install the package in your project. Once installed, ensure you build the project in which the package was installed, this will create a scripts folder in the project, which should be visible in Visual Studio's solution explorer as well.

There are two parts to using LightweightEncryption:

  1. Generating pseudo master key and master key version.
  2. Using the pseudo master key and master key version to encrypt and decrypt data.

Generating pseudo master key and master key version

Open command line terminal and navigate to scripts folder generated from earlier step.

Use the script generate_encryptionkeys_azure.py to create and store the keys in your Azure Key Vault. This script will generate a 32 byte pseudo master key and the version of the pseudo master key is stored in the master key version name.

Steps
  1. Set up your Azure subscription and keyvault:

    • Create a resource group in your Azure subscription.
    • Create a key vault in your resource group.
    • Create a service principal with access to the key vault. This service principal could either be your identity or a managed identity.
    • Assign the service principal the necessary permissions to the key vault.
    • In particular Get, List, Set permissions on secrets are required.
  2. Install the required Python packages:

    pip install -r requirements.txt
    
  3. Run the script: Execute the generate_encryptionkeys_azure.py script to generate and store the keys:

    • Provide the necessary parameters to the script:
      • --subscription-id: Azure subscription id, this parameter is required.
      • --resource-group: Azure resource group in which the keyvault resides, this parameter is required.
      • --location: Azure region, this parameter is required.
      • --vault-name: Azure keyvault, this parameter is required.
      • --key-name: Optional parameter to save the pseudo master key, if not specified 'secret--encryption--symmetricKey' will be used.
      • --key-version-name: Optional parameter to track the pseudo master key version, if not specified, 'secret--encryption--symmetricKeyVersion' will be used.
      • --expiration: Optional parameter to set the expiration time for the pseudo master key in ISO 8601 format, 'YYYY-MM-DD', if not specified, the key will expire in 3 months from the date of creation.
      • --tags: Optional parameter to set tags for the pseudo master key, if not specified, the current login user name will be used.
      • --dry-run: Optional parameter to run the script in dry run mode, no changes will be applied.
    python generate_encryptionkeys_azure.py --subscription-id <subscription-id> --resource-group <resource-group> --location <location> --vault-name <vault-name> --key-name <key-name> --key-version-name <key-version-name> --expiration <expiration> --tags <tags> --dry-run
    
  4. Verify the keys:

    • Go to the Azure portal and navigate to the key vault.
    • Verify that the pseudo master key and master key version are created.
  5. Using encryption library

    • A sample project LightweightEncryption.Usage in this repo shows the usage of the encryption library.
Dependency injection
using LightweightEncryption;
...

// Inject LightweightEncryption.IEncryptorFactory;
var hostBuilder = new HostBuilder()
  .ConfigureServices((hostBuilderContext, serviceCollection) =>
  {
    ...
    // Configuration
    serviceCollection.Configure<EncryptionConfiguration>(configurationRoot.GetSection(nameof(EncryptionConfiguration)));
    serviceCollection.Configure<KeyVaultConfiguration>(configurationRoot.GetSection(nameof(KeyVaultConfiguration)));

    // TokenCredential
    serviceCollection.AddTransient<TokenCredential>(_ => GetTokenCredential());

    // KeyVault
    serviceCollection.AddTransient<IKeyVaultSecretClientFactory, KeyVaultSecretClientFactory>();

    // MemoryCache
    serviceCollection.AddMemoryCache();

    // EncryptorFactory
    serviceCollection.AddSingleton<IEncryptorFactory, EncryptorFactory>();

    // Build
    var serviceProvider = serviceCollection.BuildServiceProvider();
    ...
  })
Encrypt/Decrypt
using LightweightEncryption;
...

private readonly IEncryptorFactory encryptorFactory;

// encrypt
var encryptor = encryptorFactory.GetEncryptor();
string payload = "...";
string encryptedpayload = await encryptor.EncryptAsync(payload);
...
// decrypt
string decryptedpayload = await encryptor.DecryptAsync(encryptedpayload);

via Git Clone

Clone the repo using git

git clone https://github.com/raghutillu/LightweightEncryption.git

After cloning, navigate to scripts folder and run the generate_encryptionkeys_azure.py script as mentioned in earlier section.

You can either build the LightweightEncryption project and take a dependency on LightweightEncryption assembly or copy the code into your project and take a compile time dependency instead.

Contribution

Feedback is welcome.

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

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
1.0.1 90 10/3/2024
1.0.0 114 9/17/2024