aboutsummaryrefslogtreecommitdiff
path: root/main.go
blob: 7ee9396fba3a2941b59dacc75dc2e786011ab0a0 (plain) (blame)
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
package main

import (
  "fmt"
  "os"
  "path/filepath"

  "github.com/gibheer/pkilib"
)

var (
  EmptyByteArray = make([]byte, 0)
)

//const (
//  RsaLowerLength = 2048
//  RsaUpperLength = 4096
//  TypeLabelRSA   = "RSA PRIVATE KEY"
//  TypeLabelECDSA = "EC PRIVATE KEY"
//  TypeLabelCSR   = "CERTIFICATE REQUEST"
//  TypeLabelPubKey = "PUBLIC KEY"
//)
//
//var (
//  EcdsaLength = []int{224, 256, 384, 521}
//)
//
func main() {
  if len(os.Args) == 1 {
    crash_with_help(1, "No module selected!")
  }
  switch os.Args[1] {
  case "create-private":   create_private_key()
  case "create-public":    create_public_key()
//  case "create-cert-sign": create_sign_request()
//  case "help":             print_modules()
//  case "info":             info_on_file()
//  case "sign-request":     sign_request()
//  case "sign-input":       sign_input()
//  case "verify-signature": verify_signature()
  default: crash_with_help(1, "Command not supported!")
  }
}

// create a private key
func create_private_key() {
  fs := NewFlags("create-private")
  fs.AddOutput()
  fs.AddPrivateKeyGenerationFlags()
  err := fs.Parse(program_args())
  if err != nil { crash_with_help(1, fmt.Sprintf("%s", err)) }

  var pk pkilib.Pemmer
  switch fs.Flags.PrivateKeyGenerationFlags.Type {
    case "ecdsa": pk, err = pkilib.NewPrivateKeyEcdsa(fs.Flags.PrivateKeyGenerationFlags.Curve)
    case "rsa":   pk, err = pkilib.NewPrivateKeyRsa(fs.Flags.PrivateKeyGenerationFlags.Size)
  }
  if err != nil { crash_with_help(2, fmt.Sprintf("%s", err)) }
  marsh_pem, err := pk.MarshalPem()
  if err != nil { crash_with_help(2, fmt.Sprintf("%s", err)) }
  _, err = marsh_pem.WriteTo(fs.Flags.Output)
  if err != nil { crash_with_help(2, fmt.Sprintf("%s", err)) }
}

// create a public key derived from a private key
func create_public_key() {
  fs := NewFlags("create-public")
  fs.AddPrivateKey()
  err := fs.Parse(program_args())
  if err != nil { crash_with_help(1, fmt.Sprintf("%s", err)) }

  fmt.Println(fs.Flags.PrivateKey.Public())
}

// print the module help
func print_modules() {
  fmt.Printf(`Usage: %s command args
where 'command' is one of:
    create-private    create a new private key
    create-public     create a public key from a private one
    create-cert-sign  create a new certificate sign request
    help              show this help
    info              get info on a file
    sign-request      sign a certificate request
    sign-input        sign a message with a private key
    verify-signature  verify a signature
`, filepath.Base(os.Args[0]))
  fmt.Println()
}

// crash and provide a helpful message
func crash_with_help(code int, message string) {
  fmt.Fprintln(os.Stderr, message)
  print_modules()
  os.Exit(code)
}

// return the arguments to the program
func program_args() []string {
  return os.Args[2:]
}