tls: Refactor TLSLoader interface to be more generic

Allow to either use NameToCertificate or GetCertificate instead of just setting Certificates.
This commit is contained in:
fox.cpp 2021-07-12 21:28:58 +03:00
parent 09393aed8f
commit 04f035174e
4 changed files with 15 additions and 9 deletions

View file

@ -18,7 +18,9 @@ along with this program. If not, see <https://www.gnu.org/licenses/>.
package module
import "crypto/tls"
import (
"crypto/tls"
)
// TLSLoader interface is module interface that can be used to supply TLS
// certificates to TLS-enabled endpoints.
@ -35,5 +37,5 @@ import "crypto/tls"
// Modules implementing this interface should be registered with prefix
// "tls.loader." in name.
type TLSLoader interface {
LoadCerts() ([]tls.Certificate, error)
ConfigureTLS(c *tls.Config) error
}