Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for getRootCertificate (0.37 sec)

  1. pilot/pkg/grpc/tls.go

    	RootCert      string
    	Key           string
    	Cert          string
    	ServerAddress string
    	SAN           string
    }
    
    func getTLSDialOption(opts *TLSOptions) (grpc.DialOption, error) {
    	rootCert, err := getRootCertificate(opts.RootCert)
    	if err != nil {
    		return nil, err
    	}
    	config := tls.Config{
    		GetClientCertificate: func(*tls.CertificateRequestInfo) (*tls.Certificate, error) {
    			var certificate tls.Certificate
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 22:11:02 UTC 2024
    - 2.9K bytes
    - Viewed (0)
Back to top