AquilaCipher 1.0.0
See the version list below for details.
dotnet add package AquilaCipher --version 1.0.0
NuGet\Install-Package AquilaCipher -Version 1.0.0
<PackageReference Include="AquilaCipher" Version="1.0.0" />
<PackageVersion Include="AquilaCipher" Version="1.0.0" />
<PackageReference Include="AquilaCipher" />
paket add AquilaCipher --version 1.0.0
#r "nuget: AquilaCipher, 1.0.0"
#:package AquilaCipher@1.0.0
#addin nuget:?package=AquilaCipher&version=1.0.0
#tool nuget:?package=AquilaCipher&version=1.0.0
AquilaCipher
AquilaCipher is a .NET wrapper for the AquilaCipher Encryption Portal, providing secure 256-bit encryption, matching, and decryption. It is designed to integrate seamlessly into .NET applications while maintaining high-grade security.
🔑 Features
🔒 256-bit Core Security – Strong encryption and decryption.
🔍 Match Support – Verify encrypted values against plain text.
🌐 Cross-Platform – Works on both .NET 8.0 and .NET Standard 2.0.
📦 Easy NuGet installation and integration.
📥 Installation dotnet add package AquilaCipher
🚀 Usage Example using AquilaCipher;
class Program { static void Main() { var cipher = new AquilaCipherClient();
// Encrypt
string plainText = "MySecurePassword123!";
string encrypted = cipher.Encrypt(plainText);
Console.WriteLine($"Encrypted: {encrypted}");
// Match
bool isMatch = cipher.Match("MySecurePassword123!", encrypted);
Console.WriteLine($"Match: {isMatch}");
}
}
⚙️ Supported Frameworks
.NET 8.0
.NET Standard 2.0
📖 License
This project is licensed under the MIT License.
🌍 Repository & Issues
Source: GitHub – AquilaCipher
NuGet: AquilaCipher Package
| 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. 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. |
-
net8.0
- System.Net.Http (>= 4.3.4)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Initial release of AquilaCipher .NET wrapper. Supports Encrypt, Enc, Dec, and Match methods.