rsa/main.go

29 lines
510 B
Go
Raw Permalink Normal View History

package main
import (
"os"
"github.com/spf13/cobra"
"src.lwithers.me.uk/go/rsa/cmd/ca"
"src.lwithers.me.uk/go/rsa/cmd/csr"
"src.lwithers.me.uk/go/rsa/cmd/inspect"
"src.lwithers.me.uk/go/rsa/cmd/keygen"
)
func main() {
root := &cobra.Command{
Use: "rsa",
Short: "RSA key and certificate manipulation",
}
inspect.Register(root)
keygen.Register(root)
csr.Register(root)
ca.Register(root)
if err := root.Execute(); err != nil {
// error will already have been displayed
os.Exit(1)
}
}