blob: 36c7271db0b06e262144c9407349e6351509f78f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
package main
// go run . | bash
import (
"crypto/ed25519"
"crypto/rand"
"fmt"
"github.com/system-transparency/stfe/types"
)
func main() {
checksum := [32]byte{}
msg := types.Message{
ShardHint: 0,
Checksum: &checksum,
}
vk, sk, err := ed25519.GenerateKey(rand.Reader)
if err != nil {
fmt.Printf("ed25519.GenerateKey: %v\n", err)
return
}
sig := ed25519.Sign(sk, msg.Marshal())
//fmt.Printf("sk: %x\nvk: %x\n", sk[:], vk[:])
fmt.Printf("echo \"shard_hint=%d\nchecksum=%x\nsignature_over_message=%x\nverification_key=%x\ndomain_hint=%s\" | curl --data-binary @- localhost:6965/st/v0/add-leaf\n", msg.ShardHint, msg.Checksum[:], sig, vk[:], "example.com")
}
|