Error if we are unable to marshal the ECDSA private key

This commit is contained in:
elcore 2016-04-17 18:19:41 +02:00
parent 0890e330e2
commit aba3d37c88

View File

@ -105,7 +105,12 @@ func PrivateKeyBytes(key crypto.PrivateKey) []byte {
case *rsa.PrivateKey:
keyBytes = x509.MarshalPKCS1PrivateKey(key)
case *ecdsa.PrivateKey:
keyBytes, _ = x509.MarshalECPrivateKey(key)
var err error
var t *testing.T
keyBytes, err = x509.MarshalECPrivateKey(key)
if err != nil {
t.Error(err)
}
}
return keyBytes
}