summaryrefslogtreecommitdiffstats
path: root/client/go/vespa/crypto.go
diff options
context:
space:
mode:
Diffstat (limited to 'client/go/vespa/crypto.go')
-rw-r--r--client/go/vespa/crypto.go8
1 files changed, 6 insertions, 2 deletions
diff --git a/client/go/vespa/crypto.go b/client/go/vespa/crypto.go
index 25d3a937f4b..6f07df47b33 100644
--- a/client/go/vespa/crypto.go
+++ b/client/go/vespa/crypto.go
@@ -160,11 +160,15 @@ func ECPrivateKeyFrom(pemPrivateKey []byte) (*ecdsa.PrivateKey, error) {
return nil, fmt.Errorf("invalid pem private key")
}
if privateKeyBlock.Type == "EC PRIVATE KEY" {
- return x509.ParseECPrivateKey(privateKeyBlock.Bytes) // Raw EC private key
+ privateKey, err := x509.ParseECPrivateKey(privateKeyBlock.Bytes) // Raw EC private key
+ if err != nil {
+ return nil, fmt.Errorf("invalid raw ec private key: %w", err)
+ }
+ return privateKey, nil
}
privateKey, err := x509.ParsePKCS8PrivateKey(privateKeyBlock.Bytes) // Try PKCS8 format
if err != nil {
- return nil, err
+ return nil, fmt.Errorf("invalid pkcs8 private key: %w", err)
}
ecKey, ok := privateKey.(*ecdsa.PrivateKey)
if !ok {