If PKCS1 parsing of the SSH key fails, try PKCS8

This commit is contained in:
Justin Santa Barbara 2013-08-31 21:54:23 -07:00
parent 13198eb570
commit 253be30bd1
1 changed files with 6 additions and 1 deletions

View File

@ -24,7 +24,12 @@ func (k *SimpleKeychain) AddPEMKey(key string) (err error) {
return errors.New("no block in key")
}
rsakey, err := x509.ParsePKCS1PrivateKey(block.Bytes)
var rsakey interface{}
rsakey, err = x509.ParsePKCS1PrivateKey(block.Bytes)
if err != nil {
rsakey, err = x509.ParsePKCS8PrivateKey(block.Bytes)
}
if err != nil {
return
}