1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2025-01-18 15:27:06 -05:00

benchmark certificate issuing

This commit is contained in:
Darien Raymond 2018-11-21 13:00:26 +01:00
parent e99dd29946
commit d2d0c69f17
No known key found for this signature in database
GPG Key ID: 7251FFA14BB18169

View File

@ -73,3 +73,27 @@ func TestInsecureCertificates(t *testing.T) {
t.Fatal("Unexpected tls cipher suites list: ", tlsConfig.CipherSuites) t.Fatal("Unexpected tls cipher suites list: ", tlsConfig.CipherSuites)
} }
} }
func BenchmarkCertificateIssuing(b *testing.B) {
certificate := ParseCertificate(cert.MustGenerate(nil, cert.Authority(true), cert.KeyUsage(x509.KeyUsageCertSign)))
certificate.Usage = Certificate_AUTHORITY_ISSUE
c := &Config{
Certificate: []*Certificate{
certificate,
},
}
tlsConfig := c.GetTLSConfig()
lenCerts := len(tlsConfig.Certificates)
b.ResetTimer()
for i := 0; i < b.N; i++ {
_, _ = tlsConfig.GetCertificate(&gotls.ClientHelloInfo{
ServerName: "www.v2ray.com",
})
delete(tlsConfig.NameToCertificate, "www.v2ray.com")
tlsConfig.Certificates = tlsConfig.Certificates[:lenCerts]
}
}