mirror of
https://github.com/TeaOSLab/EdgeCommon.git
synced 2026-01-04 18:16:35 +08:00
107 lines
2.5 KiB
Go
107 lines
2.5 KiB
Go
package sslconfigs
|
||
|
||
import (
|
||
"crypto/tls"
|
||
"crypto/x509"
|
||
)
|
||
|
||
// TLS Version
|
||
type TLSVersion = string
|
||
|
||
// Cipher Suites
|
||
type TLSCipherSuite = string
|
||
|
||
// SSL配置
|
||
type SSLPolicy struct {
|
||
Id int64 `yaml:"id" json:"id"` // ID
|
||
IsOn bool `yaml:"isOn" json:"isOn"` // 是否开启
|
||
|
||
CertRefs []*SSLCertRef `yaml:"certRefs" json:"certRefs"`
|
||
Certs []*SSLCertConfig `yaml:"certs" json:"certs"`
|
||
ClientAuthType SSLClientAuthType `yaml:"clientAuthType" json:"clientAuthType"` // 客户端认证类型
|
||
ClientCARefs []*SSLCertRef `yaml:"clientCARefs" json:"clientCARefs"` // 客户端认证CA证书引用
|
||
ClientCACerts []*SSLCertConfig `yaml:"clientCACerts" json:"clientCACerts"` // 客户端认证CA
|
||
|
||
MinVersion TLSVersion `yaml:"minVersion" json:"minVersion"` // 支持的最小版本
|
||
CipherSuitesIsOn bool `yaml:"cipherSuitesIsOn" json:"cipherSuitesIsOn"` // 是否自定义加密算法套件
|
||
CipherSuites []TLSCipherSuite `yaml:"cipherSuites" json:"cipherSuites"` // 加密算法套件
|
||
|
||
HSTS *HSTSConfig `yaml:"hsts" json:"hsts"` // HSTS配置
|
||
HTTP2Enabled bool `yaml:"http2Enabled" json:"http2Enabled"` // 是否启用HTTP2
|
||
|
||
nameMapping map[string]*tls.Certificate // dnsName => cert
|
||
|
||
minVersion uint16
|
||
cipherSuites []uint16
|
||
|
||
clientCAPool *x509.CertPool
|
||
}
|
||
|
||
// 校验配置
|
||
func (this *SSLPolicy) Init() error {
|
||
// certs
|
||
for _, cert := range this.Certs {
|
||
err := cert.Init()
|
||
if err != nil {
|
||
return err
|
||
}
|
||
}
|
||
|
||
// CA certs
|
||
for _, cert := range this.ClientCACerts {
|
||
err := cert.Init()
|
||
if err != nil {
|
||
return err
|
||
}
|
||
}
|
||
|
||
// min version
|
||
this.convertMinVersion()
|
||
|
||
// cipher suite categories
|
||
this.initCipherSuites()
|
||
|
||
// hsts
|
||
if this.HSTS != nil {
|
||
err := this.HSTS.Init()
|
||
if err != nil {
|
||
return err
|
||
}
|
||
}
|
||
|
||
return nil
|
||
}
|
||
|
||
// 取得最小版本
|
||
func (this *SSLPolicy) TLSMinVersion() uint16 {
|
||
return this.minVersion
|
||
}
|
||
|
||
// 套件
|
||
func (this *SSLPolicy) TLSCipherSuites() []uint16 {
|
||
return this.cipherSuites
|
||
}
|
||
|
||
// 校验是否匹配某个域名
|
||
func (this *SSLPolicy) MatchDomain(domain string) (cert *tls.Certificate, ok bool) {
|
||
for _, cert := range this.Certs {
|
||
if cert.MatchDomain(domain) {
|
||
return cert.CertObject(), true
|
||
}
|
||
}
|
||
return nil, false
|
||
}
|
||
|
||
// 取得第一个证书
|
||
func (this *SSLPolicy) FirstCert() *tls.Certificate {
|
||
for _, cert := range this.Certs {
|
||
return cert.CertObject()
|
||
}
|
||
return nil
|
||
}
|
||
|
||
// CA证书Pool,用于TLS对客户端进行认证
|
||
func (this *SSLPolicy) CAPool() *x509.CertPool {
|
||
return this.clientCAPool
|
||
}
|