From 4bef11c59c3e28f0f587b710d56d98c0f26591ad Mon Sep 17 00:00:00 2001 From: Rasmus Dahlberg Date: Tue, 3 Nov 2020 12:14:51 +0100 Subject: added get-sth client without signature verification --- client/get-sth/main.go | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 client/get-sth/main.go (limited to 'client/get-sth') diff --git a/client/get-sth/main.go b/client/get-sth/main.go new file mode 100644 index 0000000..6f0075b --- /dev/null +++ b/client/get-sth/main.go @@ -0,0 +1,39 @@ +package main + +import ( + "context" + "flag" + "fmt" + + "net/http" + + "github.com/golang/glog" + "github.com/system-transparency/stfe/client" +) + +var ( + operators = flag.String("operators", "../../server/descriptor/stfe.json", "path to json-encoded list of log operators") + logId = flag.String("log_id", "B9oCJk4XIOMXba8dBM5yUj+NLtqTE6xHwbvR9dYkHPM=", "base64-encoded log identifier") + chain = flag.String("chain", "../../server/testdata/chain/ee.pem", "path to pem-encoded certificate chain that the log accepts") +) + +func main() { + flag.Parse() + + client, err := client.NewClientFromPath(*logId, *chain, "", *operators, &http.Client{}, true) + if err != nil { + glog.Fatal(err) + } + sth, err := client.GetSth(context.Background()) + if err != nil { + glog.Fatalf("get-sth failed: %v", err) + } + + str, err := sth.MarshalB64() + if err != nil { + glog.Fatalf("failed encoding valid signed tree head: %v", err) + } + fmt.Println(str) + + glog.Flush() +} -- cgit v1.2.3