mirror of
https://github.com/foxcpp/maddy.git
synced 2025-04-05 22:17:39 +03:00
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:
parent
09393aed8f
commit
04f035174e
4 changed files with 15 additions and 9 deletions
|
@ -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
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue