sigsum-log-primary

command
v0.5.1 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jul 19, 2022 License: Apache-2.0 Imports: 23 Imported by: 0

README

Run Trillian + sigsum-log-primary locally

Trillian uses a database. So, we will need to set that up. It is documented here, and how to check that it is setup properly here.

Other than the database we need Trillian log signer, Trillian log server, and sigsum-log-primary. sigsum-log-primary has been tested with trillian v.1.3.13.

$ go install github.com/google/trillian/cmd/trillian_log_signer@v1.3.13
$ go install github.com/google/trillian/cmd/trillian_log_server@v1.3.13

Start Trillian log signer:

trillian_log_signer --logtostderr -v 9 --force_master --rpc_endpoint=localhost:6961 --http_endpoint=localhost:6964 --num_sequencers 1 --sequencer_interval 100ms --batch_size 100

Start Trillian log server:

trillian_log_server --logtostderr -v 9 --rpc_endpoint=localhost:6962 --http_endpoint=localhost:6963

As described in more detail here, we need to provision a Merkle tree once:

$ go install github.com/google/trillian/cmd/createtree@v1.3.13
$ createtree --admin_server localhost:6962
<tree id>

Hang on to <tree id>. Our sigsum-log-primary instance will use it when talking to the Trillian log server to specify which Merkle tree we are working against.

(If you take a look in the Trees table you will see that the tree has been provisioned.)

We will also need a public key-pair for sigsum-log-primary.

$ go install git.sigsum.org/sigsum-go/cmd/sigsum-debug@latest
$ sigsum-debug key private | tee sk | sigsum-debug key public > vk

Start sigsum-log-primary:

$ tree_id=<tree_id>
$ sk=<sk>
$ sigsum-log-primary --logtostderr -v 9 --http_endpoint localhost:6965 --log_rpc_server localhost:6962 --trillian_id $tree_id --key <(echo sk)

Quick test:

Documentation

Overview

Package main provides a sigsum-log-primary binary

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL