Skip to content

Commit

Permalink
fix pivtool generate key touch policy (#2282)
Browse files Browse the repository at this point in the history
Signed-off-by: cpanato <ctadeu@gmail.com>

Signed-off-by: cpanato <ctadeu@gmail.com>
  • Loading branch information
cpanato authored Sep 26, 2022
1 parent 11343e9 commit d720f04
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
4 changes: 2 additions & 2 deletions cmd/cosign/cli/pivcli/commands.go
Original file line number Diff line number Diff line change
Expand Up @@ -206,12 +206,12 @@ func GenerateKeyCmd(ctx context.Context, managementKey string, randomKey bool, s
return flag.ErrHelp
}

pinPolicy := pivkey.PINPolicyForName(pinPolicyArg, *slot)
pinPolicy := pivkey.PINPolicyForName(strings.ToLower(pinPolicyArg), *slot)
if pinPolicy < 0 {
return flag.ErrHelp
}

touchPolicy := pivkey.TouchPolicyForName(pinPolicyArg, *slot)
touchPolicy := pivkey.TouchPolicyForName(strings.ToLower(touchPolicyArg), *slot)
if touchPolicy < 0 {
return flag.ErrHelp
}
Expand Down
2 changes: 0 additions & 2 deletions cmd/cosign/cli/pkcs11cli/commands.go
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,6 @@ func GetKeysInfo(_ context.Context, modulePath string, slotID uint, pin string)
}

func ListTokensCmd(ctx context.Context, modulePath string) error {

tokens, err := GetTokens(ctx, modulePath)
if err != nil {
return err
Expand All @@ -223,7 +222,6 @@ func ListTokensCmd(ctx context.Context, modulePath string) error {
}

func ListKeysUrisCmd(ctx context.Context, modulePath string, slotID uint, pin string) error {

keysInfo, err := GetKeysInfo(ctx, modulePath, slotID, pin)
if err != nil {
return err
Expand Down

0 comments on commit d720f04

Please sign in to comment.