Decode certificate private key from pem encoding

This commit is contained in:
Melon 2023-07-11 13:01:20 +01:00
parent 2989a1e749
commit 5322d4b096
Signed by: melon
GPG Key ID: 6C9D970C50D26A25

View File

@ -392,11 +392,15 @@ func (s *Service) getDnsProvider(name, token string) (challenge.Provider, error)
// getPrivateKey reads the private key for the specified certificate id
func (s *Service) getPrivateKey(id uint64) (*rsa.PrivateKey, error) {
privKeyBytes, err := os.ReadFile(filepath.Join(s.keyDir, fmt.Sprintf("%d.key.pem", id)))
pemBytes, err := os.ReadFile(filepath.Join(s.keyDir, fmt.Sprintf("%d.key.pem", id)))
if err != nil {
return nil, err
}
return x509.ParsePKCS1PrivateKey(privKeyBytes)
keyBlock, _ := pem.Decode(pemBytes)
if keyBlock.Type != "RSA PRIVATE KEY" {
return nil, fmt.Errorf("invalid pem block type")
}
return x509.ParsePKCS1PrivateKey(keyBlock.Bytes)
}
// renewCert sets the renewing state in the database, calls renewCertInternal,