aboutsummaryrefslogtreecommitdiff
path: root/main.go
blob: e6c66ae87d174d0df1c67c75226d131366eaccb0 (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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
package main

import (
	"crypto/rand"
	"errors"
	"flag"
	"fmt"
	"io"
	"os"

	"sauteed-onions.org/onion-csr/internal/options"
	"sauteed-onions.org/onion-csr/pkg/ocsr"
	"sauteed-onions.org/onion-csr/pkg/okey"
)

const entropyBytes = 10 // 80 bits

func main() {
	opts, err := options.New(os.Args[0], os.Args[1:])
	if err != nil {
		if errors.Is(err, flag.ErrHelp) {
			os.Exit(0)
		}

		fmt.Fprintf(os.Stderr, "ERROR: %v\n", err)
		os.Exit(1)
	}

	var applicantNonce [entropyBytes]byte
	if _, err := io.ReadFull(rand.Reader, applicantNonce[:]); err != nil {
		fmt.Fprintf(os.Stderr, "ERROR: %v\n", err)
		os.Exit(1)
	}
	priv, err := okey.NewFromHSDir(opts.HSDir)
	if err != nil {
		fmt.Fprintf(os.Stderr, "ERROR: %v\n", err)
		os.Exit(1)
	}
	csr, err := ocsr.New(priv, opts.CANonce, applicantNonce[:])
	if err != nil {
		fmt.Fprintf(os.Stderr, "ERROR: %v\n", err)
		os.Exit(1)
	}

	fmt.Fprintf(os.Stdout, "%s", csr)
}