blob: 70779c2ee26f7616ae8cc8b7cee01e14a92f42ef (
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
29
|
package private
import (
"crypto/ed25519"
"crypto/rand"
"fmt"
"strings"
"git.sigsum.org/sigsum-go/pkg/hex"
)
const privateKeySize = 64
func Main(args []string) error {
if len(args) != 0 {
return fmt.Errorf("trailing arguments: %s", strings.Join(args, ", "))
}
_, priv, err := ed25519.GenerateKey(rand.Reader)
if err != nil {
return fmt.Errorf("generate key: %w", err)
}
if len(priv) != privateKeySize {
return fmt.Errorf("invalid key size %d", len(priv))
}
fmt.Printf("%s\n", hex.Serialize(priv.Seed()))
return nil
}
|