AquilaCipher 1.4.5

dotnet add package AquilaCipher --version 1.4.5
                    
NuGet\Install-Package AquilaCipher -Version 1.4.5
                    
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="AquilaCipher" Version="1.4.5" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="AquilaCipher" Version="1.4.5" />
                    
Directory.Packages.props
<PackageReference Include="AquilaCipher" />
                    
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 AquilaCipher --version 1.4.5
                    
#r "nuget: AquilaCipher, 1.4.5"
                    
#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.
#:package AquilaCipher@1.4.5
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=AquilaCipher&version=1.4.5
                    
Install as a Cake Addin
#tool nuget:?package=AquilaCipher&version=1.4.5
                    
Install as a Cake Tool

AquilaCipher

AquilaCipher is a simple tool for encrypting, decrypting, and verifying text using a randomized case-based cipher system.
Each encryption produces a unique output, making it useful for text security, validation, and obfuscation.


Features

  • Encrypt text into a secure randomized string
  • Verify if an encrypted string matches the original text
  • Optional decryption to retrieve the original text
  • Each encryption is unique
  • Lightweight and easy to use

How to Use

1. Encrypt Text

Use Encrypt to turn your original text into a secure encrypted string.
Each encryption generates a different output even for the same input.

string originalText = "HelloWorld";

// Encrypt the text
string encryptedText = AquilaCipher.AquilaCipher.Encrypt(originalText);
Console.WriteLine($"Encrypted: {encryptedText}");
Example output (randomized):

aBcDeFgHiJ

2. Verify Encrypted Text

Use Match to check if an encrypted string corresponds to the original text.

bool isMatch = AquilaCipher.AquilaCipher.Match(encryptedText, originalText);
Console.WriteLine($"Does it match? {isMatch}"); // true


This is useful for validating encrypted data without decrypting it manually.

Notes & Guidelines

Randomized encryption: Every encryption generates a unique result.

Case-based encoding: Lowercase letters represent one value, uppercase letters represent another.

Verification: Always use Match to confirm encrypted text against the original.

Use cases: Lightweight text security, validation, obfuscation.

Limitations: Not intended for high-security or sensitive data.
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  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.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • .NETStandard 2.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
1.4.5 135 1/25/2026
1.4.4 116 1/25/2026
1.4.3 112 1/25/2026
1.4.1 108 1/25/2026
1.3.0 123 1/25/2026
1.2.0 171 12/26/2025
1.0.9 155 8/23/2025
1.0.8 136 8/23/2025
1.0.7 135 8/23/2025
1.0.6 141 8/23/2025
1.0.5 134 8/23/2025
1.0.4 135 8/23/2025
1.0.3 140 8/23/2025
1.0.2 137 8/23/2025
1.0.1 139 8/23/2025
1.0.0 139 8/23/2025