Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 45 of 45 for CipherSuites (0.34 sec)

  1. pilot/pkg/config/kube/gateway/conversion.go

    	if tls == nil {
    		return nil, nil
    	}
    	// Explicitly not supported: file mounted
    	// Not yet implemented: TLS mode, https redirect, max protocol version, SANs, CipherSuites, VerifyCertificate
    	out := &istio.ServerTLSSettings{
    		HttpsRedirect: false,
    	}
    	mode := k8s.TLSModeTerminate
    	if tls.Mode != nil {
    		mode = *tls.Mode
    	}
    	namespace := gw.Namespace
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  2. okhttp/src/test/java/okhttp3/CallTest.kt

              clientCertificates.trustManager,
            )
            .connectionSpecs(
              listOf(
                ConnectionSpec.Builder(ConnectionSpec.MODERN_TLS)
                  .cipherSuites(cipherSuite)
                  .build(),
              ),
            )
            .build()
        val serverCertificates =
          HandshakeCertificates.Builder()
            .build()
        server.useHttps(
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 142.5K bytes
    - Viewed (0)
  3. src/net/http/h2_bundle.go

    		s.TLSConfig = new(tls.Config)
    	} else if s.TLSConfig.CipherSuites != nil && s.TLSConfig.MinVersion < tls.VersionTLS13 {
    		// If they already provided a TLS 1.0–1.2 CipherSuite list, return an
    		// error if it is missing ECDHE_RSA_WITH_AES_128_GCM_SHA256 or
    		// ECDHE_ECDSA_WITH_AES_128_GCM_SHA256.
    		haveRequired := false
    		for _, cs := range s.TLSConfig.CipherSuites {
    			switch cs {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  4. tests/integration/pilot/common/routing.go

          name: {{.GatewayPortName}}
          protocol: {{.GatewayProtocol}}
    {{- if .Credential }}
        tls:
          mode: {{.TLSMode}}
          credentialName: {{.Credential}}
    {{- if .Ciphers }}
          cipherSuites:
    {{- range $cipher := .Ciphers }}
          - "{{$cipher}}"
    {{- end }}
    {{- end }}
    {{- end }}
        hosts:
        - "{{.GatewayHost}}"
    ---
    `
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  5. pkg/generated/openapi/zz_generated.openapi.go

    						},
    					},
    					"tlsCipherSuites": {
    						SchemaProps: spec.SchemaProps{
    							Description: "tlsCipherSuites is the list of allowed cipher suites for the server. Note that TLS 1.3 ciphersuites are not configurable. Values are from tls package constants (https://golang.org/pkg/crypto/tls/#pkg-constants). Default: nil",
    							Type:        []string{"array"},
    							Items: &spec.SchemaOrArray{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
Back to top