Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for EnforceGoCompliance (0.14 sec)

  1. pkg/model/fips.go

    	for _, cipher := range ciphers {
    		out[cipher] = struct{}{}
    	}
    	return out
    }
    
    var fipsCipherIndex = index(fipsCiphers)
    
    // EnforceGoCompliance limits the TLS settings to the compliant values.
    // This should be called as the last policy.
    func EnforceGoCompliance(ctx *gotls.Config) {
    	switch common_features.CompliancePolicy {
    	case "":
    		return
    	case common_features.FIPS_140_2:
    		ctx.MinVersion = gotls.VersionTLS12
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 22:11:02 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  2. pilot/pkg/bootstrap/webhook.go

    		MinVersion:     tls.VersionTLS12,
    		CipherSuites:   args.ServerOptions.TLSOptions.CipherSuits,
    	}
    	// Compliance for control plane validation and injection webhook server.
    	sec_model.EnforceGoCompliance(tlsConfig)
    
    	istiolog.Info("initializing secure webhook server for istiod webhooks")
    	// create the https server for hosting the k8s injectionWebhook handlers.
    	s.httpsMux = http.NewServeMux()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 17:37:53 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  3. pilot/pkg/grpc/tls.go

    		config.ServerName = "istiod.istio-system.svc"
    	}
    	if opts.SAN != "" {
    		config.ServerName = opts.SAN
    	}
    	// Compliance for all gRPC clients (e.g. Citadel)..
    	sec_model.EnforceGoCompliance(&config)
    	transportCreds := credentials.NewTLS(&config)
    	return grpc.WithTransportCredentials(transportCreds), nil
    }
    
    func getRootCertificate(rootCertFile string) (*x509.CertPool, error) {
    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