From 28df6cedfe8d347bd87931960c01e6606c14851e Mon Sep 17 00:00:00 2001 From: Matthew Holt Date: Thu, 18 Jul 2019 09:52:43 -0600 Subject: tls: Use IANA-standard cipher suite names --- modules/caddytls/acmemanager.go | 9 --------- 1 file changed, 9 deletions(-) (limited to 'modules/caddytls/acmemanager.go') 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) -- cgit v1.2.3