forked from smallstep/cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
format.go
256 lines (225 loc) · 6.67 KB
/
format.go
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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
package key
import (
"bytes"
"crypto"
"crypto/ecdsa"
"crypto/rsa"
"crypto/x509"
"encoding/pem"
"io/ioutil"
"os"
"github.com/pkg/errors"
"github.com/smallstep/cli/command"
"github.com/smallstep/cli/crypto/pemutil"
"github.com/smallstep/cli/errs"
"github.com/smallstep/cli/flags"
"github.com/smallstep/cli/ui"
"github.com/smallstep/cli/utils"
"github.com/urfave/cli"
"golang.org/x/crypto/ed25519"
)
func formatCommand() cli.Command {
return cli.Command{
Name: "format",
Action: command.ActionFunc(formatAction),
Usage: `reformat a public or private key`,
UsageText: `**step crypto key format** <key-file> [**--out**=<path>]`,
Description: `**step crypto key format** prints or writes the key in
a different format.
By default PEM formated keys will be converted to DER with the following rules:
* ECDSA, RSA, AND Ed25519 public keys will use the DER-encoded PKIX format.
* ECDSA, AND RSA private keys will use the ASN.1, DER format.
* Ed25519 private keys will use the DER-encoded PKCS8 encoded form.
And DER encoded keys will be converted to PEM with the following rules:
* ECDSA, RSA, AND Ed25519 public keys will use the PEM-encoded PKIX format.
* ECDSA private keys will use the PEM-encoded format defined in RFC 5915 and
SEC1.
* RSA private keys will use the PEM-encoded PKCS#1 format.
* Ed25519 private keys will use the PEM-encoded PKCS#8 format.
The flags **--pkcs8**, **--pem** and **--der** can be use to change the previous
defaults. For example we can use **--pkcs8** to save a PKCS#1 RSA key to the
PKCS#8 form. Or we can combine **--pem** and **--pkcs8** to convert to PKCS#8 a
PEM file.
## POSITIONAL ARGUMENTS
<crt_file>
: Path to a certificate file.
## EXIT CODES
This command returns 0 on success and \>0 if any error occurs.
## EXAMPLES
Convert a PEM file to DER:
'''
$ step crypto key format key.pem
'''
Convert DER file to PEM.
'''
$ step crypto key format key.der
'''
Convert PEM file to DER and write to disk.
'''
$ step crypto key format key.pem --out key.der
'''
Convert a PKCS#1 RSA private key to PKCS#8 using the PEM format:
'''
$ step crypto key format --pem --pkcs8 rsa.pem --out rsa-pkcs8.pem
'''
Convert PKCS#8 RSA private key to the PKCS#1 format:
'''
$ step crypto key format --pem rsa-pkcs8.pem --out rsa.pem
'''
Convert an ASN.1 DER format to the PEM-encoded PKCS#8 format:
'''
$ step crypto key format --pkcs8 key.der --out key-pkcs8.der
'''
Convert an ASN.1 DER format to the DER-encoded PKCS#8 format:
'''
$ step crypto key format --der --pkcs8 key.der --out key-pkcs8.der
'''`,
Flags: []cli.Flag{
cli.BoolFlag{
Name: "pkcs8",
Usage: "Convert RSA and ECDSA private keys to PKCS#8 PEM/DER format.",
},
cli.BoolFlag{
Name: "pem",
Usage: `Uses PEM as the result encoding format. If neither **--pem** nor **--der** are
set it will always switch to the other format.`,
},
cli.BoolFlag{
Name: "der",
Usage: `Uses DER as the result enconfig format. If neither **--pem** nor **--der** are
set it will always switch to the other format.`,
},
cli.StringFlag{
Name: "out",
Usage: "Path to write the reformatted result.",
},
cli.StringFlag{
Name: "password-file",
Usage: "Location of file containing passphrase to decrypt private key.",
},
cli.BoolFlag{
Name: "no-password",
Usage: `Do not ask for a password to encrypt a private key with PEM format. Sensitive
key material will be written to disk unencrypted. This is not recommended.
Requires **--insecure** flag.`,
},
flags.Insecure,
flags.Force,
},
}
}
func formatAction(ctx *cli.Context) error {
if err := errs.NumberOfArguments(ctx, 1); err != nil {
return err
}
var (
keyFile = ctx.Args().Get(0)
out = ctx.String("out")
toPEM = ctx.Bool("pem")
toDER = ctx.Bool("der")
noPassword = ctx.Bool("no-password")
insecure = ctx.Bool("insecure")
key interface{}
ob []byte
)
// --pem and --der cannot be used at the same time
if toPEM && toDER {
return errs.IncompatibleFlagWithFlag(ctx, "pem", "der")
}
// --no-password requires --insecure
if noPassword && !insecure {
return errs.RequiredInsecureFlag(ctx, "no-password")
}
b, err := ioutil.ReadFile(keyFile)
if err != nil {
return errs.FileError(err, keyFile)
}
switch {
case bytes.HasPrefix(b, []byte("-----BEGIN ")): // PEM format:
opts := []pemutil.Options{pemutil.WithFilename(keyFile)}
if passFile := ctx.String("password-file"); passFile != "" {
opts = append(opts, pemutil.WithPasswordFile(passFile))
}
if key, err = pemutil.Parse(b, opts...); err != nil {
return err
}
// convert to DER if not specified
if !toPEM && !toDER {
toDER = true
}
default: // assuming DER format
if key, err = pemutil.ParseDER(b); err != nil {
return err
}
// convert to PEM if not specified
if !toPEM && !toDER {
toPEM = true
}
}
switch {
case toPEM:
if ob, err = convertToPEM(ctx, key); err != nil {
return err
}
case toDER:
if ob, err = convertToDER(ctx, key); err != nil {
return err
}
default:
return errors.New("error formating key: it should not get here")
}
if out == "" {
os.Stdout.Write(ob)
} else {
info, err := os.Stat(keyFile)
if err != nil {
return errs.FileError(err, keyFile)
}
if err := utils.WriteFile(out, ob, info.Mode()); err != nil {
return errs.FileError(err, out)
}
ui.Printf("Your key has been saved in %s.\n", out)
}
return nil
}
func convertToPEM(ctx *cli.Context, key interface{}) (b []byte, err error) {
opts := []pemutil.Options{
pemutil.WithPKCS8(ctx.Bool("pkcs8")),
}
// Add password if necessary
if _, ok := key.(crypto.PrivateKey); ok && !ctx.Bool("no-password") {
if passFile := ctx.String("password-file"); passFile != "" {
opts = append(opts, pemutil.WithPasswordFile(passFile))
} else {
opts = append(opts, pemutil.WithPasswordPrompt("Please enter the password to encrypt the private key"))
}
}
block, err := pemutil.Serialize(key, opts...)
if err != nil {
return nil, err
}
return pem.EncodeToMemory(block), nil
}
func convertToDER(ctx *cli.Context, key interface{}) (b []byte, err error) {
switch k := key.(type) {
case *rsa.PrivateKey:
if ctx.Bool("pkcs8") {
b, err = pemutil.MarshalPKCS8PrivateKey(key)
} else {
b = x509.MarshalPKCS1PrivateKey(k)
}
case *ecdsa.PrivateKey:
if ctx.Bool("pkcs8") {
b, err = pemutil.MarshalPKCS8PrivateKey(key)
} else {
b, err = x509.MarshalECPrivateKey(k)
}
case ed25519.PrivateKey: // always PKCS#8
b, err = pemutil.MarshalPKCS8PrivateKey(key)
case *ecdsa.PublicKey, *rsa.PublicKey, ed25519.PublicKey: // always PKIX
b, err = pemutil.MarshalPKIXPublicKey(key)
default:
return nil, errors.Errorf("unsupoorted key type %T", key)
}
return
}