-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
The official Let's Encrypt boulder code only issues RSA certificates from RSA issuer certificates and only ECDSA certificates from an ECDSA issuer CA. Many people are having issues with this in LabCA. Until we have the option for multiple issuers per root CA and/or multiple CA chains in the GUI of LabCA, use the single issuer CA for both key types.
- Loading branch information
Showing
2 changed files
with
22 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
diff --git a/ca/ca.go b/ca/ca.go | ||
index 739ce53e7..2ccb11969 100644 | ||
--- a/ca/ca.go | ||
+++ b/ca/ca.go | ||
@@ -177,10 +177,14 @@ func makeIssuerMaps(issuers []*issuance.Issuer) (issuerMaps, error) { | ||
} | ||
} | ||
if i, ok := issuersByAlg[x509.ECDSA]; !ok || len(i) == 0 { | ||
- fmt.Println("WARNING: no ECDSA issuers configured") | ||
+ // TODO: LabCA hack! | ||
+ issuersByAlg[x509.ECDSA] = issuersByAlg[x509.RSA] | ||
+ // fmt.Println("WARNING: no ECDSA issuers configured") | ||
} | ||
if i, ok := issuersByAlg[x509.RSA]; !ok || len(i) == 0 { | ||
- fmt.Println("WARNING: no RSA issuers configured") | ||
+ // TODO: LabCA hack! | ||
+ issuersByAlg[x509.RSA] = issuersByAlg[x509.ECDSA] | ||
+ // fmt.Println("WARNING: no RSA issuers configured") | ||
} | ||
return issuerMaps{issuersByAlg, issuersByNameID}, nil | ||
} |