-
-
Notifications
You must be signed in to change notification settings - Fork 359
/
credentials_generate.go
50 lines (40 loc) · 1.56 KB
/
credentials_generate.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
// Copyright © 2023 Ory Corp
// SPDX-License-Identifier: Apache-2.0
package cmd
import (
"encoding/json"
"fmt"
"os"
"github.com/spf13/cobra"
"github.com/ory/x/cmdx"
"github.com/ory/x/flagx"
"github.com/ory/x/jwksx"
)
// credentialsGenerateCmd represents the generate command
var credentialsGenerateCmd = &cobra.Command{
Use: "generate",
Short: "Generate a key for the specified algorithm",
Long: `Examples:
$ oathkeeper credentials generate --alg ES256 > jwks.json
$ oathkeeper credentials generate --alg RS256 > jwks.json
$ oathkeeper credentials generate --alg RS256 --bits 4096 > jwks.json`,
Run: func(cmd *cobra.Command, _ []string) {
key, err := jwksx.GenerateSigningKeys(
flagx.MustGetString(cmd, "kid"),
flagx.MustGetString(cmd, "alg"),
flagx.MustGetInt(cmd, "bits"),
)
cmdx.Must(err, "Unable to generate key: %s", err)
d := json.NewEncoder(os.Stdout)
d.SetIndent("", " ")
err = d.Encode(key)
cmdx.Must(err, "Unable to encode key to JSON: %s", err)
},
}
func init() {
credentialsCmd.AddCommand(credentialsGenerateCmd)
credentialsGenerateCmd.Flags().String("alg", "", fmt.Sprintf("Generate a key to be used for one of the following algorithms: %v", jwksx.GenerateSigningKeysAvailableAlgorithms()))
credentialsGenerateCmd.Flags().String("kid", "", "The JSON Web Key ID (kid) to be used. A random value will be used if left empty.")
credentialsGenerateCmd.Flags().Int("bits", 0, "The key size in bits. If left empty will default to a secure value for the selected algorithm.")
cmdx.Must(credentialsGenerateCmd.MarkFlagRequired("alg"), "")
}