gxt-csharp
3.0.0
See the version list below for details.
dotnet add package gxt-csharp --version 3.0.0
NuGet\Install-Package gxt-csharp -Version 3.0.0
<PackageReference Include="gxt-csharp" Version="3.0.0" />
<PackageVersion Include="gxt-csharp" Version="3.0.0" />
<PackageReference Include="gxt-csharp" />
paket add gxt-csharp --version 3.0.0
#r "nuget: gxt-csharp, 3.0.0"
#:package gxt-csharp@3.0.0
#addin nuget:?package=gxt-csharp&version=3.0.0
#tool nuget:?package=gxt-csharp&version=3.0.0
GXT (Game Exchange Token)
Minimal, encrypted, signed and copy-pasteable tokens for manual data exchange between games.
For details check out spec.md.
Rationale
I was thinking about how it could be possible to add trading between two players to a singleplayer game as part of a mod. Mostly out of curiosity to see if it was doable or too much work. At first I thought about having a server that manages the trades, but then I thought that not everybody can or wants to set up a server.
Thats also when I had the idea to package the data into string tokens that can be sent via discord and started researching how to make this somewhat secure and easy to use and implement.
With the current design, every message is signed and encrypted for a designated receiver. This prevents people from fulfilling a trade request and then sending the fulfillment to 50 people who all collect the rewards. Its still not as secure as server side validation, but thats okay for me.
While working on this, I also realized that there is potential for more than just trading, so I removed all the trade specific fields and the protocol now takes an opaque payload that can contain any valid json value. (Strings, Numbers, Maps, etc.)
About
The protocol uses an Ed25519 key pair for signing messages and to derive a X25519 key pair from encryption.
The size of the token before encoding is limited to 64KB.
Because this is intended to be easy to integrate by mod authors, a library and cli are provided.
Both are written in rust. There is also a wrapper that exposes a C API called gxt-api-c, a wrapper that provides
the API as an Extism plugin and a C# wrapper (based on Extism).
Install
cargo install gxt-cli
# or if you want the UI as well
cargo install gxt-cli -F ui
Demo
# Create keys for communication
gxt keygen --out alice.key
gxt keygen --out bob.key
# Create an id card for bob
echo '{"name":"Bob"}' | gxt id bob.key --out bob.id --meta -
# Verify if the id card is valid and signed
gxt verify --file bob.id
# Create a message for bob using their id card and your own key
gxt msg --key alice.key --to bob.id --out msg_to_bob.gxt --payload '{"hello":"world"}'
# Verify if the message is valid and signed
gxt verify --file msg_to_bob.gxt
# Decrypt the message using bobs key
gxt decrypt --key bob.key --file msg_to_bob.gxt
# Try decrypting a message with a key its not intended for
gxt keygen --out charlie.key
gxt decrypt --key charlie.key --file msg_to_bob.gxt
CLI
General
GXT (Game Exchange Token)
Usage: gxt <COMMAND>
Commands:
keygen Generates a new private key
id Generate an ID card containing the data about a peer
verify Verify a message
msg Create an encrypted message
decrypt Decrypt a message
help Print this message or the help of the given subcommand(s)
Options:
-h, --help Print help
-V, --version Print version
Keygen
Generates a new private key
Usage: gxt keygen --out <OUT>
Options:
-o, --out <OUT> Where to store the key
-h, --help Print help
Id
Generate an ID card containing the data about a peer
Usage: gxt id [OPTIONS] --meta <META> <KEY>
Arguments:
<KEY> The key of the person creating the id card
Options:
-m, --meta <META> Meta data for the id card. Can be anything, but must be set. Pass - to read from stdin
-o, --out <OUT> Where to store the id card token
-h, --help Print help
Verify
Verify a message
Usage: gxt.exe verify [OPTIONS] <--msg <MSG>|--file <FILE>>
Options:
-m, --msg <MSG> The string token containing the message. Pass - to read from stdin
-f, --file <FILE> The path to the encrypted message
-j, --json Print output as json
-h, --help Print help
Msg
Create an encrypted message
Usage: gxt msg [OPTIONS] --key <KEY> --to <TO> --payload <PAYLOAD>
Options:
-k, --key <KEY> The key of the sender
-t, --to <TO> The id card of the recipient
-p, --parent <PARENT> The parent of this message
--payload <PAYLOAD> The payload of the message. Can be anything, but must be set. Pass - to read from stdin
-o, --out <OUT> Where to store the message token
-h, --help Print help
Decrypt
Decrypt a message
Usage: gxt.exe decrypt [OPTIONS] --key <KEY> <--msg <MSG>|--file <FILE>>
Options:
-k, --key <KEY> The key of the receiver
-m, --msg <MSG> The string token containing the message. Pass - to read from stdin
-f, --file <FILE> The path to the encrypted message
-j, --json Print output as json
-h, --help Print help
C API
To use the C API, clone the repository and then build the crate gxt-api-c.
This will create a dynamic and a static library, as well as the corresponding include header,
inside the target directory.
git clone https://github.com/hardliner66/gxt
cd gxt
cargo build -p gxt-api-c --release
cd target/release
ls
Extism API
By exposing the API as an Extism plugin its possible to use the library in every language that is supported as a host language by Extism.
C# API
Ready to use C# DLL, which loads the library through Extism, so we don't have to deploy the native library.
| 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
- Extism.runtime.all (>= 1.12.0)
- Extism.Sdk (>= 1.9.1)
- Newtonsoft.Json (>= 13.0.3)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.