Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 551 for xtls (0.1 sec)

  1. cmd/config-current.go

    	xldap "github.com/minio/minio/internal/config/identity/ldap"
    	"github.com/minio/minio/internal/config/identity/openid"
    	idplugin "github.com/minio/minio/internal/config/identity/plugin"
    	xtls "github.com/minio/minio/internal/config/identity/tls"
    	"github.com/minio/minio/internal/config/ilm"
    	"github.com/minio/minio/internal/config/lambda"
    	"github.com/minio/minio/internal/config/notify"
    	"github.com/minio/minio/internal/config/policy/opa"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 08:14:58 UTC 2024
    - 30.8K bytes
    - Viewed (0)
  2. cmd/utils.go

    }
    
    func newTLSConfig(getCert certs.GetCertificateFunc) *tls.Config {
    	if getCert == nil {
    		return nil
    	}
    
    	tlsConfig := &tls.Config{
    		PreferServerCipherSuites: true,
    		MinVersion:               tls.VersionTLS12,
    		NextProtos:               []string{"http/1.1", "h2"},
    		GetCertificate:           getCert,
    		ClientSessionCache:       tls.NewLRUClientSessionCache(tlsClientSessionCacheSize),
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 05 22:00:34 UTC 2024
    - 31.9K bytes
    - Viewed (0)
  3. src/crypto/tls/cipher_suites.go

    			return cipherSuite
    		}
    	}
    	return nil
    }
    
    // A list of cipher suite IDs that are, or have been, implemented by this
    // package.
    //
    // See https://www.iana.org/assignments/tls-parameters/tls-parameters.xml
    const (
    	// TLS 1.0 - 1.2 cipher suites.
    	TLS_RSA_WITH_RC4_128_SHA                      uint16 = 0x0005
    	TLS_RSA_WITH_3DES_EDE_CBC_SHA                 uint16 = 0x000a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  4. src/crypto/tls/tls.go

    // license that can be found in the LICENSE file.
    
    // Package tls partially implements TLS 1.2, as specified in RFC 5246,
    // and TLS 1.3, as specified in RFC 8446.
    package tls
    
    // BUG(agl): The crypto/tls package only implements some countermeasures
    // against Lucky13 attacks on CBC-mode encryption, and only on SHA1
    // variants. See http://www.isg.rhul.ac.uk/tls/TLStiming.pdf and
    // https://www.imperialviolet.org/2013/02/04/luckythirteen.html.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/tls.go

    	// Is there a virtual service with a TLS block that matches us?
    	hasTLSMatch := false
    
    	lb := &ListenerBuilder{node: node, push: push}
    	out := make([]*filterChainOpts, 0)
    	for _, cfg := range configs {
    		virtualService := cfg.Spec.(*v1alpha3.VirtualService)
    		for _, tls := range virtualService.Tls {
    			for _, match := range tls.Match {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  6. pilot/pkg/credentials/kube/secrets_test.go

    			namespace: "default",
    			cert:      "tls-mtls-cert",
    			key:       "tls-mtls-key",
    			caCert:    "tls-mtls-ca",
    		},
    		{
    			name:      "tls-mtls-crl",
    			namespace: "default",
    			cert:      "tls-mtls-cert",
    			key:       "tls-mtls-key",
    			caCert:    "tls-mtls-ca",
    			crl:       "tls-mtls-crl",
    			caCrl:     "tls-mtls-crl",
    		},
    		{
    			name:            "tls-mtls-split",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 19:18:21 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/peer_authentication_simulation_test.go

     resolution: STATIC
     ports:
     - name: http
       number: 8000
       protocol: HTTP
    ---`
    	mkCall := func(port int, tls simulation.TLSMode) simulation.Call {
    		r := simulation.Call{Protocol: simulation.HTTP, Port: port, CallMode: simulation.CallModeInbound, TLS: tls}
    		if tls == simulation.MTLS {
    			r.Alpn = "istio"
    		}
    		return r
    	}
    	cases := []struct {
    		name   string
    		config string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  8. tests/integration/security/sds_ingress/ingress_test.go

    }
    
    // TestSingleMTLSGateway_ServerKeyCertRotation tests a single mTLS ingress gateway with SDS enabled.
    // Verifies behavior in these scenarios.
    // (1) create two kubernetes secrets to provision server key/cert and client CA cert, and
    // verify that mTLS connection could establish to deliver HTTPS request.
    // (2) replace kubernetes secret to rotate server key/cert, and verify that mTLS connection could
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  9. pilot/pkg/xds/endpoints/ep_filters_test.go

    					Mtls: &security.PeerAuthentication_MutualTLS{Mode: security.PeerAuthentication_MutualTLS_STRICT},
    				},
    			},
    			IsMtlsDisabled: false,
    		},
    		"mtls-off-global": {
    			Config: config.Config{
    				Meta: config.Meta{
    					GroupVersionKind: gvk.PeerAuthentication,
    					Name:             "mtls-off",
    					Namespace:        "istio-system",
    				},
    				Spec: &security.PeerAuthentication{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 01:17:58 UTC 2024
    - 26.8K bytes
    - Viewed (0)
  10. tests/integration/security/sds_ingress/util/util.go

    )
    
    const (
    	// The ID/name for the certificate chain in kubernetes tls secret.
    	tlsScrtCert = "tls.crt"
    	// The ID/name for the k8sKey in kubernetes tls secret.
    	tlsScrtKey = "tls.key"
    	// The ID/name for the CA certificate in kubernetes tls secret
    	tlsScrtCaCert = "ca.crt"
    	// The ID/name for the CRL in kubernetes tls secret
    	tlsScrtCaCrl = "ca.crl"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 25 05:12:36 UTC 2023
    - 20.2K bytes
    - Viewed (0)
Back to top