summaryrefslogtreecommitdiff
path: root/modules/caddytls/acmemanager.go
diff options
context:
space:
mode:
authorMatthew Holt <mholt@users.noreply.github.com>2019-07-18 09:52:43 -0600
committerMatthew Holt <mholt@users.noreply.github.com>2019-07-18 09:52:43 -0600
commit28df6cedfe8d347bd87931960c01e6606c14851e (patch)
tree5c525082b7f5c8de2036831855a32057634b4b2d /modules/caddytls/acmemanager.go
parentdd6aa91d724ce90dc56839bcbd6d8de3ed44646d (diff)
tls: Use IANA-standard cipher suite names
Diffstat (limited to 'modules/caddytls/acmemanager.go')
-rw-r--r--modules/caddytls/acmemanager.go9
1 files changed, 0 insertions, 9 deletions
diff --git a/modules/caddytls/acmemanager.go b/modules/caddytls/acmemanager.go
index 13c515f..578cdb3 100644
--- a/modules/caddytls/acmemanager.go
+++ b/modules/caddytls/acmemanager.go
@@ -202,14 +202,5 @@ func onDemandAskRequest(ask string, name string) error {
return nil
}
-// supportedCertKeyTypes is all the key types that are supported
-// for certificates that are obtained through ACME.
-var supportedCertKeyTypes = map[string]certcrypto.KeyType{
- "RSA2048": certcrypto.RSA2048,
- "RSA4096": certcrypto.RSA4096,
- "P256": certcrypto.EC256,
- "P384": certcrypto.EC384,
-}
-
// Interface guard
var _ managerMaker = (*ACMEManagerMaker)(nil)