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
|
package jwk
import (
"crypto"
"encoding/base64"
"encoding/json"
"fmt"
"io/ioutil"
"os"
"github.com/pkg/errors"
"github.com/smallstep/cli/jose"
"github.com/urfave/cli"
)
func thumbprintCommand() cli.Command {
return cli.Command{
Name: "thumbprint",
Action: cli.ActionFunc(thumbprintAction),
Usage: "compute thumbprint for a JWK",
UsageText: `**step crypto jwk thumbprint**`,
Description: `**step crypto jwk thumbprint** reads a JWK from STDINT, derives the
corresponding JWK Thumbprint (RFC7638), and prints the base64-urlencoded
thumbprint to STDOUT.
For examples, see **step help crypto jwk**.`,
}
}
func thumbprintAction(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")
}
hash, err := jwk.Thumbprint(crypto.SHA256)
if err != nil {
return errors.Wrap(err, "error generating JWK thumbprint")
}
fmt.Println(base64.RawURLEncoding.EncodeToString(hash))
return nil
}
|