AquilaCipher 1.0.9

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

AquilaCipher .NET Client A professional .NET client library for seamless integration with Aquila Innovations' encryption API services. Provides both JSON and plain text encryption capabilities.

📦 NuGet Package bash Install-Package AquilaCipher

or

dotnet add package AquilaCipher 🚀 Quick Start Installation Install the NuGet package:

bash Install-Package AquilaCipher Add the namespace:

csharp using AquilaCipher; Basic Usage csharp // Encrypt text (returns JSON) string encryptedJson = ACipher.Encrypt("Hello World"); // Returns: {"encrypted": "encrypted_data_here"}

// Plain text encryption string plainEncrypted = ACipher.PlainEncrypt("Secret Message"); // Returns: "encrypted_string"

// Match verification (returns JSON) string matchResult = ACipher.Match(encryptedData, "Hello World"); // Returns: {"match": true}

// Plain match verification string plainMatchResult = ACipher.PlainMatch(plainEncrypted, "Secret Message"); // Returns: "true" 📖 API Reference JSON Response Methods Encrypt(string text) Encrypts text using Aquila Cipher algorithm.

Returns: string - JSON object with encrypted data

json {"encrypted": "encrypted_data"} Match(string encrypted, string plain) Verifies if encrypted text matches plain text.

Returns: string - JSON object with match result

json {"match": true} Plain Text Response Methods PlainEncrypt(string text) Performs plain encryption.

Returns: string - Direct encrypted string

PlainMatch(string encrypted, string plain) Verifies plain-encrypted match.

Returns: string - "true" or "false"

🎯 Advanced Usage JSON Response Parsing csharp using System.Text.Json;

// Encrypt and parse response string jsonResponse = ACipher.Encrypt("sensitive data"); using JsonDocument doc = JsonDocument.Parse(jsonResponse); string encryptedText = doc.RootElement.GetProperty("encrypted").GetString();

// Match verification with parsing string matchJson = ACipher.Match(encryptedText, "sensitive data"); var matchData = JsonSerializer.Deserialize<MatchResult>(matchJson); bool isMatch = matchData.Match;

public class MatchResult { public bool Match { get; set; } } Error Handling csharp try { string result = ACipher.Encrypt("My data"); // Process result } catch (HttpRequestException ex) { Console.WriteLine($"API communication error: {ex.Message}"); } catch (JsonException ex) { Console.WriteLine($"JSON parsing error: {ex.Message}"); } 🔧 Configuration HttpClient Configuration The library uses a static HttpClient. For custom configuration:

csharp // Custom timeout (optional) ACipher.Client.Timeout = TimeSpan.FromSeconds(30); Dependencies .NET Support: .NET Standard 2.0+, .NET Framework 4.7.2+, .NET Core 3.1+

NuGet Packages:

System.Net.Http

System.Text.Json (for JSON parsing)

🌐 API Endpoint Communicates with Aquila Innovations' secure API:

📊 Response Format Summary Method Return Format Example Output Encrypt() JSON {"encrypted": "a1b2c3d4"} Match() JSON {"match": true} PlainEncrypt() Plain Text "a1b2c3d4" PlainMatch() Plain Text "true" ⚠️ Error Handling The library throws standard exceptions:

HttpRequestException - API communication failures

JsonException - JSON parsing errors (for JSON methods)

🔒 Security Notes All communications use HTTPS encryption

No sensitive data stored locally

Recommended for secure data transmission

Ensure proper exception handling in production

📋 Requirements .NET Standard 2.0+ compatible project

Internet connectivity for API calls

Valid network permissions

🆕 Version History v1.0.0 (Current)

Initial release

Encryption support only (no decryption)

JSON and plain text response handling

Comprehensive error handling

❓ Support For issues and questions:

Check this documentation

Review exception messages

Contact Aquila Innovations support

📄 License Proprietary license. See package details for terms of use.

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 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. 
.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.
  • 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
1.0.9 80 8/23/2025
1.0.8 68 8/23/2025
1.0.7 68 8/23/2025
1.0.6 64 8/23/2025
1.0.5 63 8/23/2025
1.0.4 67 8/23/2025
1.0.3 70 8/23/2025
1.0.2 65 8/23/2025
1.0.1 64 8/23/2025
1.0.0 71 8/23/2025