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
|
package jwk
import (
"encoding/json"
"fmt"
"io/ioutil"
"os"
"github.com/pkg/errors"
"github.com/smallstep/cli/jose"
"github.com/urfave/cli"
)
func publicCommand() cli.Command {
return cli.Command{
Name: "public",
Action: cli.ActionFunc(publicAction),
Usage: "extract a public JSON Web Key (JWK) from a private JWK",
UsageText: `**step crypto jwk public**`,
Description: `**step crypto jwk public** command reads a JWK from STDIN, derives the
corresponding public JWK, and prints the derived JWK to STDOUT.
For examples, see **step help crypto jwk**.`,
}
}
func publicAction(ctx *cli.Context) error {
b, err := ioutil.ReadAll(os.Stdin)
if err != nil {
return errors.Wrap(err, "error reading from STDIN")
}
jwk := new(jose.JSONWebKey)
// Attempt to decrypt if encrypted
if b, err = jose.Decrypt("Please enter the password to decrypt your private JWK", b); err != nil {
return err
}
// Unmarshal the plain (or decrypted JWK)
if err = json.Unmarshal(b, jwk); err != nil {
return errors.New("error reading JWK: unsupported format")
}
var public jose.JSONWebKey
// go-jose JSONWebKey.Public() returns an empty key for oct
if _, ok := jwk.Key.([]byte); ok {
public = *jwk
} else {
public = jwk.Public()
}
b, err = json.MarshalIndent(public, "", " ")
if err != nil {
return errors.Wrap(err, "error marshaling JWK")
}
fmt.Println(string(b))
return nil
}
|