GXT (Game Exchange Token)
Minimal, encrypted, signed and copy-pasteable tokens for manual data exchange between games.
For details check out spec.md.
- Rationale
- About
- Playground
- Install
- Demo
- File Extensions & Prefixes
- CLI
- Advisory Module
- C API
- Extism API
- WASM API
- C# API
- Special Thanks
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).
Playground
There is a web UI for trying it out which can be found here: GXT Playground
Install
# or if you want a simple (read-only) UI as well
Demo
# Create keys for communication
# Create an id card for bob
|
# Verify if the id card is valid and signed
# Create a message for bob using their id card and your own key
# Verify if the message is valid and signed
# Decrypt the message using bobs key
# Try decrypting a message with a key its not intended for
File Extensions & Prefixes
| Token Kind | Prefix | File Extension | Description |
|---|---|---|---|
| Key | gxk: |
.gxk |
A private key, used to sign messages. DO NOT SHARE. These are supposed to be private. If you want to exchange data with someone, send them an ID card. |
| Id | gxi: |
.gxi |
An identity card, containing the necessary data to encrypt messages for the owner of the ID card. This is derived from the private key. |
| Message | gxm: |
.gxm |
A message that is signed with a key and encrypted for a specified ID card. Once generated, the data inside can only be decrypted by the private key that was used to derive the specified ID card. |
CLI
General
)
# This command is only available if the cli was installed with the "ui" feature
)
Keygen
Id
<KEY> The
Verify
|
Msg
Decrypt
|
UI
Only available if cli was installed with the "ui" feature enabled!
Advisory Module
The advisory module contains simple structures that can be used as a base for implementing trades.
If you need need more features or different shapes of data, feel free to use your own instead.
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.
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.
To build the crate as an Extism plugin, make sure you build from within the gxt-api-extism directory.
Otherwise it will try to use the JS backend for getrandom, which is defined as the default for wasm so that
the crate can be included in rust web projects without having to set the backend themselves.
WASM API
If you want to import the crate into your web/node.js project, you can build the gxt-wasm crate with wasm-pack
for the target you need.
Make sure you run wasm-pack from inside the gxt-wasm directory so that it picks up all the optimization options.
C# API
Ready to use C# DLL, which loads the library through Extism, so we don't have to deploy the native library.
Also available on nuget: https://www.nuget.org/packages/gxt-csharp
Special Thanks
- Daniel Kempf, for creating the UI for github pages