Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
183 changes: 96 additions & 87 deletions go.mod

Large diffs are not rendered by default.

423 changes: 203 additions & 220 deletions go.sum

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion pkg/chains/signing/x509/x509.go
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ func cosignSigner(ctx context.Context, secretPath string, privateKey []byte) (*S
if err != nil {
return nil, errors.Wrap(err, "reading cosign.password file")
}
signer, err := cosign.LoadPrivateKey(privateKey, password)
signer, err := cosign.LoadPrivateKey(privateKey, password, nil)
if err != nil {
return nil, err
}
Expand Down
2 changes: 1 addition & 1 deletion test/clients.go
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ func setupSecret(ctx context.Context, t *testing.T, c kubernetes.Interface, opts
}
s.StringData[p] = string(b)
}
cosignPriv, err := cosign.LoadPrivateKey([]byte(s.StringData["cosign.key"]), []byte(s.StringData["cosign.password"]))
cosignPriv, err := cosign.LoadPrivateKey([]byte(s.StringData["cosign.key"]), []byte(s.StringData["cosign.password"]), nil)
if err != nil {
t.Fatal(err)
}
Expand Down
43 changes: 43 additions & 0 deletions vendor/cloud.google.com/go/spanner/CHANGES.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Loading