Base on the Alice
This program demonstrates a simple TSS by using go-libp2p. It contains 3 main functions which are
dkg
: generate sharessigner
: sign a messagereshare
: refresh shares
Beyond all commands, there are some common inputs.
config.yaml
port: 10001
rpc: 1234
badger-dir: "./node.test/badger1"
port
: Port that this node will listen for.rpc
: Port that this RPC server is exposed.badger-dir
: Directory that badger database is stored.
Besides the common inputs, DKG will need another two inputs.
rank
: The rank of this node during HTSS algorithm.threshold
: The threshold that needed to generate a valid signature.
curl --request POST \
--url http://127.0.0.1:1234/tss \
--header 'Content-Type: application/json' \
--data '{
"jsonrpc":"2.0",
"method": "signer.RegisterDKG",
"params": [
],
"id": "12"
}'
{
"jsonrpc": "2.0",
"result": {
"Data": {
"hash": "0x5a73c8fb1b418fdd33985b0b3a8561243abbb5cf1af3f0a368502939e3a4d658",
"config": {
"rank": 0,
"threshold": 2
}
}
},
"id": "12"
}
hash
: The hash of the DKG. Usehash
to get data.curl --request POST \ --url http://127.0.0.1:1234/tss \ --header 'Content-Type: application/json' \ --data '{ "jsonrpc": "2.0", "method": "signer.GetDKG", "params": [ { "key": "hash" } ], "id": "12" }'
{ "jsonrpc": "2.0", "result": { "Data": { "share": "m/qLSTBTc/f7My0iPs5woPKfoKgT+XFnStmX4owvxUgRJ2fgdnKxztwfYMNpO1aE8JqjZnA9lsHw+gLl4yWEWA==", "pubkey": { "X": "d890e326fc2ea4f67d8eb6dc451779836fe7a15a2643b901d342f76ba06d7674", "Y": "d637a8b69734453627a4d9c324f007b45c819c8240d6e75ed4adb66ede844b16" }, "publicKey": "02d890e326fc2ea4f67d8eb6dc451779836fe7a15a2643b901d342f76ba06d7674", "address": "0x6dc09db941ff502d1ed186cb72e863dc405787a8", "bks": { "QmTnNGyMB9ZzPVWnnxHMuvUpNHEEe1iDiih2KAzuX8yoSQ": { "X": "109729591954224079959826078399798641625124977056152422372303221817148775946583", "Rank": 0 }, "QmWSwYK1spmsKsSk4tvZ5UdsahhQkJZ9Tv5KewF3dCXeTG": { "X": "81027363746734659626980593804036585447339663816871029076125049049095054333520", "Rank": 0 }, "QmYY7udrgptw5NbiBnujvAwnm2vVxS6yet1iMCrERwi2h5": { "X": "42332349435963829328874129794257492944267227575524735938800760087749784934735", "Rank": 0 } } } }, "id": "12" }
- Result DKG
share
: The respective encrypted share of the node. The value of share in these output files must be different.pubkey
: The public key. The value of public key in these output files must be the same.address
: Address of public key.bks
: The Birkhoff parameter of all nodes. Each Birkhoff parameter contains x coordinate and the rank.
Signer will need another three inputs.
hash
: The hash of the DKG.pubkey
: The public key generated from DKG.msg
: The message to be signed.
e.g.
curl --request POST \
--url http://127.0.0.1:1234/tss \
--header 'Content-Type: application/json' \
--data '{
"jsonrpc": "2.0",
"method": "signer.SignMessage",
"params": [
{
"data": {
"hash":"hash",
"pubkey": "pubkey",
"message": "msg"
}
}
],
"id": "12"
}'
{
"jsonrpc": "2.0",
"result": {
"Data": "0x064e6b2999d1c97a9b73f17d4ec5730a3e5c8c4b240aab0b09f31b18de80dc8a"
},
"id": "12"
}
After signing, we will have a hash
to get signature. And the value of the signature (both r
and s
).
Request get signature
curl --request POST \
--url http://127.0.0.1:1234/tss \
--header 'Content-Type: application/json' \
--data '{
"jsonrpc": "2.0",
"method": "signer.GetKey",
"params": [
{
"key": "hash"
}
],
"id": "12"
}'
Response
{
"jsonrpc": "2.0",
"result": {
"Data": {
"hash": "hash",
"r": "r",
"s": "s"
}
},
"id": "12"
}
Reshare will need another two inputs.
hash
: The hash of the DKG.pubkey
: The public key generated from DKG.
curl --request POST \
--url http://127.0.0.1:1234/tss \
--header 'Content-Type: application/json' \
--data '{
"jsonrpc":"2.0",
"method": "signer.Reshare",
"params": [
{
"data": {
"hash":"hash",
"pubkey": "pubkey"
}
}
],
"id": "12"
}'
{
"jsonrpc": "2.0",
"result": {
"Data": "hash"
},
"id": "12"
}
After reshare, the value of new share is rotated and different with the old one and each share in the output will be stored and replaced in DB.
At project root directory
make tss
After the binary was built, open three terminals.
On node A, id-10001-input.yaml
port: 10001
rpc: 1234
badger-dir: "./node.test/badger1"
> ./cmd/tss start --config ./cmd/id-10001-input.yml --keystore ./node.test/keystore/1
On node B, id-10002-input.yaml
port: 10002
rpc: 1235
badger-dir: "./node.test/badger2"
> ./cmd/tss start --config ./cmd/id-10002-input.yml --keystore ./node.test/keystore/2
On node C, id-10003-input.yaml
port: 10003
rpc: 1236
badger-dir: "./node.test/badger3"
> ./cmd/tss start --config ./cmd/id-10003-input.yml --keystore ./node.test/keystore/3