HexaEightASKClientLibrary 1.9.140

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

HexaEight ASK Client Library

How To Use The Library

Visit HexaEight For More Information

Breaking Changes - 1.9.6 and above - Support for Browsers

Code Sample

Initialize a new ASK Client

var HEClient = new ASKClient("HexaEight_LoginToken","Resource Name", "LoginToken_Password");

Set your Own Password for Session Encryption

HEClient.SetSafeKey("OwnPassword");

Set an API Key (RapidAPI)

HEClient.SetRapidAPIKey("APIKey");

Encrypt a Message For any Destination. (Destination should be a valid Email Address or Resource Provider)

var encryptedmessage = HEClient.EncryptMessageByKnownName("demo.hexaeight.com","Hello Demo");

Decrypt a Message Received

var decryptedmessage = HEClient.DecryptMessageByKnownName("demo.hexaeight.com",<Encrypted Message>);

Fetch Current Ephemeral Key for a Destination

var sharedkey = HEClient.GetSharedKeyByKnownName("<Valid Email Address or Resource Name");

Fetch an Old Ephemeral Key for a Destination - Added in 1.7.4

var sharedkey = HEClient.GetPreSharedKeyByKnownName("<Valid Email Address or Resource Name",UnixTimeStamp);

Decrypt a Message Using the Ephemeral Key - Added in 1.7.3

var decryptedmessage = HEClient.DecryptMessageUsingSharedKey(<Encrypted Message>,<sharedkey>);

Encrypt a Message Using the Ephemeral Key - Added in 1.7.6

var encryptedmessage = HEClient.EncryptMessageUsingSharedKey(<RecipientName>,<Encrypted Message>,<sharedkey>);

Encrypt a Message Using User Access Key (UAK) - Added in 1.7.9

var encryptedmessage = HEClient.EncryptMessageUsingUAK(<RecipientName>,<Encrypted Message>, <uak of user> <sharedkey of destination user resource>);

Decrypt a Message Encrypted Using UAK - Added in 1.7.9

var decryptedmessage = HEClient.DecryptMessageForUAK(<Encrypted Message>,<sharedkey of user>);

Added support for Binary Data Encryption and Decryption using Shared keys and User Access keys - Version 1.8.6

var encrypteddata = EncryptRaw(originaldata, Sharedkey);

var originaldata = DecryptRaw(encrypteddata, Sharedkey);

var encrypteddata = EncryptRawUsingUAK(originaldata, useraccesskey, sharedkey);

var originaldata = DecryptRawUsingUAK(encrypteddata, useraccesskey, sharedkey);

Added new capability for Fetching an Old Ephemeral Key for multiple Destinations - Useful for multi path traversal / multi message approvals

var sharedkey = HEClient.GetPreSharedKeyByKnownName("<Multiple Valid Email Address or Resource Name seperated by semicolons (;)",UnixTimeStamp);

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 netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.1 is compatible. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen 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.

NuGet packages (2)

Showing the top 2 NuGet packages that depend on HexaEightASKClientLibrary:

Package Downloads
HexaEightJWTLibrary

Create and Validate HexaEight JWT Tokens using this Libarary. This Library provides helper functions to implement HexaEight authenticated encryption and decryption of messages.

HexaEightAgent

Create And Assign Identities for AI Agents using this Library

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.9.140 303 12/7/2025
1.9.139 174 12/5/2025
1.9.138 678 12/3/2025
1.9.137 669 12/3/2025
1.9.136 676 12/3/2025
1.9.135 127 11/29/2025
1.9.134 125 11/28/2025
1.9.133 152 11/28/2025
1.9.132 289 11/22/2025
1.9.131 220 11/22/2025
1.9.130 262 11/22/2025
1.9.129 318 11/21/2025
1.9.128 394 11/21/2025
1.9.127 485 11/20/2025
1.9.126 416 11/20/2025
1.9.125 418 11/20/2025
1.9.124 406 11/20/2025
1.9.123 448 11/20/2025
1.9.122 409 11/19/2025
1.9.121 415 11/19/2025
1.9.120 360 11/17/2025
1.9.119 292 11/17/2025
1.9.118 251 11/14/2025
1.9.117 289 11/9/2025
1.9.116 165 11/8/2025
1.9.115 191 11/7/2025
1.9.114 194 11/7/2025
1.9.113 227 11/7/2025
1.9.112 195 11/7/2025
1.9.111 184 10/24/2025
1.9.109 196 10/23/2025
1.9.108 300 10/20/2025
1.9.107 241 10/20/2025
1.9.106 184 10/20/2025
1.9.105 188 10/20/2025
1.9.104 149 10/17/2025
1.9.103 492 9/21/2025
1.9.102 363 9/18/2025
1.9.101 357 9/15/2025
1.9.100 151 9/13/2025
1.9.99 131 9/13/2025
1.9.98 150 9/12/2025
1.9.97 263 6/29/2025
1.9.96 972 10/11/2024
1.9.95 444 10/11/2024
1.9.94 238 8/20/2024
1.9.93 323 8/11/2024
1.9.92 286 8/11/2024
1.9.91 456 8/7/2024
1.9.90 266 8/7/2024
1.9.89 3,502 1/30/2024
1.9.88 3,161 9/27/2023
1.9.87 199 9/27/2023
1.9.86 5,146 2/18/2023
1.9.85 498 2/18/2023
1.9.84 363 2/18/2023
1.9.83 32,301 7/21/2022
1.9.82 2,025 7/21/2022
1.9.81 862 7/21/2022
1.9.80 1,764 7/18/2022
1.9.79 900 7/18/2022
1.9.78 579 7/18/2022
1.9.77 577 7/18/2022
1.9.76 578 7/17/2022
1.9.75 873 7/17/2022
1.9.74 564 7/17/2022
1.9.73 1,161 7/17/2022
1.9.72 854 7/17/2022
1.9.4 9,732 5/2/2022