Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for CipherSuites (0.16 sec)

  1. pilot/pkg/networking/core/gateway_test.go

    					PrivateKey:        "private-key.key",
    					CipherSuites:      []string{"ECDHE-ECDSA-AES128-SHA", "ECDHE-ECDSA-AES128-SHA"},
    				},
    			},
    			result: &auth.DownstreamTlsContext{
    				CommonTlsContext: &auth.CommonTlsContext{
    					AlpnProtocols: util.ALPNHttp,
    					TlsParams: &auth.TlsParameters{
    						CipherSuites: []string{"ECDHE-ECDSA-AES128-SHA"},
    					},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 144K bytes
    - Viewed (0)
  2. pkg/config/validation/validation_test.go

    				CredentialName: "sds-name",
    				CipherSuites:   []string{"not-a-cipher-suite"},
    			},
    			"", "not-a-cipher-suite",
    		},
    		{
    			"valid cipher suites",
    			&networking.ServerTLSSettings{
    				Mode:           networking.ServerTLSSettings_SIMPLE,
    				CredentialName: "sds-name",
    				CipherSuites:   []string{"ECDHE-ECDSA-AES128-SHA"},
    			},
    			"", "",
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
  3. okhttp-android/src/main/baseline-prof.txt

    HSPLokhttp3/ConnectionSpec$Builder;-><init>(Z)V
    HSPLokhttp3/ConnectionSpec$Builder;->build()Lokhttp3/ConnectionSpec;
    HSPLokhttp3/ConnectionSpec$Builder;->cipherSuites([Ljava/lang/String;)Lokhttp3/ConnectionSpec$Builder;
    HSPLokhttp3/ConnectionSpec$Builder;->cipherSuites([Lokhttp3/CipherSuite;)Lokhttp3/ConnectionSpec$Builder;
    HSPLokhttp3/ConnectionSpec$Builder;->supportsTlsExtensions(Z)Lokhttp3/ConnectionSpec$Builder;
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Mar 21 11:22:00 UTC 2022
    - 127.9K bytes
    - Viewed (0)
  4. pkg/config/validation/validation.go

    		if len(tls.CipherSuites) == 0 {
    			v = AppendWarningf(v, "TLS version below TLSV1_2 require setting compatible ciphers as by default they no longer include compatible ciphers.")
    		}
    	}
    
    	invalidCiphers := sets.New[string]()
    	validCiphers := sets.New[string]()
    	duplicateCiphers := sets.New[string]()
    	for _, cs := range tls.CipherSuites {
    		if !security.IsValidCipherSuite(cs) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    type: integer required: - number - protocol - name type: object tls: description: Set of TLS related options that govern the server's behavior. properties: caCertificates: description: REQUIRED if mode is `MUTUAL` or `OPTIONAL_MUTUAL`. type: string cipherSuites: description: 'Optional: If specified, only support the specified cipher list.' items: type: string type: array credentialName: description: For gateways running on Kubernetes, the name of the secret that holds the TLS certs including the CA certificates....
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
Back to top