HexaEight.Bridge 1.0.0-preview6

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

HexaEight.Bridge

The universal integration layer for HexaEight identity and Dead Drop Encryption (DDE) — one small .NET assembly that lets any language (Node.js, Python, native .NET, and soon Go and Rust via CoreCLR hosting) consume the HexaEight platform with the same API surface.

What it does

HexaEight's cryptographic libraries (HexaEightASKClientLibrary, HexaEightJWTLibrary) are .NET libraries. To call them from Node.js, Python, or any other runtime, you'd normally have to wrap each method, manage the .NET hosting plumbing, and reason about runtime quirks that differ between hosts.

HexaEight.Bridge solves that once. Every HexaEight operation — fetching shared keys, encrypting / decrypting messages, creating and validating encrypted JWT tokens, multi-party encryption — is exposed as a single async, Task-returning method on a Client class. Language hosts that project .NET tasks to their native async type (Node.js maps Task<T> to Promise, Python's pythonnet maps it to an awaitable) get a clean, idiomatic call in their own language with no glue code.

The Bridge is the layer every HexaEight SDK is built on top of.

Installation

dotnet add package HexaEight.Bridge --prerelease

The package multi-targets net8.0, net9.0, net10.0. NuGet picks the right one for your host.

Usage

using HexaEight.Bridge;

var client = new Client();
long kgt = (long)(DateTime.UtcNow - new DateTime(1970, 1, 1)).TotalMinutes;
kgt -= kgt % 15;
string key = await client.FetchSharedKeyDirectAsync("agent01.example.com", kgt);

The same Client class is reachable from Node.js (via node-api-dotnet under dotnet.HexaEight.Bridge.Client) and from Python (via pythonnet in the HexaEight.Bridge namespace). Method names, parameters, and return shapes are identical across languages.

For higher-level developer ergonomics (per-language packaging, ASK caching, transport helpers, CLI activation), consume the language-specific SDK that wraps this package:

License

Apache License 2.0. The Bridge is open-source plumbing; the underlying HexaEight cipher implementation (DDE) is delivered as closed-source NuGet packages and is patent-pending.

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.  net9.0 is compatible.  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 is compatible.  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. 
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.0-preview6 40 5/26/2026
1.0.0-preview5 36 5/26/2026