Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 102 for xtls (0.05 sec)

  1. cmd/iam.go

    	}
    
    	stsTLSConfig, err := xtls.Lookup(s[config.IdentityTLSSubSys][config.Default])
    	if err != nil {
    		iamLogIf(ctx, fmt.Errorf("Unable to initialize X.509/TLS STS API: %w", err), logger.WarningKind)
    	}
    
    	if stsTLSConfig.InsecureSkipVerify {
    		iamLogIf(ctx, fmt.Errorf("Enabling %s is not recommended in a production environment", xtls.EnvIdentityTLSSkipVerify), logger.WarningKind)
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  2. src/crypto/tls/common.go

    )
    
    // TLS signaling cipher suite values
    const (
    	scsvRenegotiation uint16 = 0x00ff
    )
    
    // CurveID is the type of a TLS identifier for a key exchange mechanism. See
    // https://www.iana.org/assignments/tls-parameters/tls-parameters.xml#tls-parameters-8.
    //
    // In TLS 1.2, this registry used to support only elliptic curves. In TLS 1.3,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/sidecar_simulation_test.go

    			{Port: port, Protocol: simulation.HTTP, TLS: simulation.Plaintext, HostHeader: "foo"},
    			{Port: port, Protocol: simulation.HTTP, TLS: simulation.TLS, HostHeader: "foo"},
    			{Port: port, Protocol: simulation.HTTP, TLS: simulation.TLS, HostHeader: "foo", Alpn: "http/1.1"},
    			{Port: port, Protocol: simulation.TCP, TLS: simulation.Plaintext, HostHeader: "foo"},
    			{Port: port, Protocol: simulation.HTTP2, TLS: simulation.TLS, HostHeader: "foo"},
    		} {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  4. pilot/pkg/security/authn/policy_applier_test.go

    					},
    				},
    			},
    			ValidationContextType: &tls.CommonTlsContext_CombinedValidationContext{
    				CombinedValidationContext: &tls.CommonTlsContext_CombinedCertificateValidationContext{
    					DefaultValidationContext: &tls.CertificateValidationContext{},
    					ValidationContextSdsSecretConfig: &tls.SdsSecretConfig{
    						Name: "ROOTCA",
    						SdsConfig: &core.ConfigSource{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 01 07:32:22 UTC 2023
    - 60.2K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/cluster_tls_test.go

    			result: expectedResult{
    				tlsContext: &tls.UpstreamTlsContext{
    					CommonTlsContext: &tls.CommonTlsContext{
    						TlsParams: &tls.TlsParameters{
    							// if not specified, envoy use TLSv1_2 as default for client.
    							TlsMaximumProtocolVersion: tls.TlsParameters_TLSv1_3,
    							TlsMinimumProtocolVersion: tls.TlsParameters_TLSv1_2,
    						},
    						TlsCertificateSdsSecretConfigs: []*tls.SdsSecretConfig{
    							{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 03:53:05 UTC 2024
    - 60.9K bytes
    - Viewed (0)
  6. docs/bucket/notifications/README.md

    sasl             (on|off)    set to 'on' to enable SASL authentication
    tls              (on|off)    set to 'on' to enable TLS
    tls_skip_verify  (on|off)    trust server TLS without verification, defaults to "on" (verify)
    client_tls_cert  (path)      path to client certificate for mTLS auth
    client_tls_key   (path)      path to client key for mTLS auth
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 84K bytes
    - Viewed (0)
  7. istioctl/pkg/describe/describe.go

    			for _, ps := range trafficPolicy.PortLevelSettings {
    				fmt.Fprintf(writer, "%s%d:\n", printSpaces(4), ps.GetPort().GetNumber())
    				if ps.Tls != nil {
    					fmt.Fprintf(writer, "%sTLS Mode: %s\n", printSpaces(initPrintNum+printLevel2), ps.Tls.Mode.String())
    				}
    				if sp := recordShortPolicies(
    					ps.LoadBalancer,
    					ps.ConnectionPool,
    					ps.OutlierDetection); sp != "" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  8. tests/integration/ambient/baseline_test.go

    kind: PeerAuthentication
    metadata:
      name: global-strict
    spec:
      mtls:
        mode: STRICT
    				`).ApplyOrFail(t)
    				opt = opt.DeepCopy()
    				if !src.Config().HasProxyCapabilities() && dst.Config().HasProxyCapabilities() {
    					// Expect deny if the dest is in the mesh (enforcing mTLS) but src is not (not sending mTLS)
    					opt.Check = CheckDeny
    				}
    				src.CallOrFail(t, opt)
    			})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/envoyfilter/listener_patch_test.go

    					TransportSocket: &core.TransportSocket{
    						Name: "envoy.transport_sockets.tls",
    						ConfigType: &core.TransportSocket_TypedConfig{
    							TypedConfig: protoconv.MessageToAny(&tls.DownstreamTlsContext{
    								CommonTlsContext: &tls.CommonTlsContext{
    									TlsParams: &tls.TlsParameters{
    										TlsMaximumProtocolVersion: tls.TlsParameters_TLSv1_3,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 70.1K bytes
    - Viewed (0)
  10. src/crypto/tls/conn.go

    	c.handshakeMutex.Lock()
    	defer c.handshakeMutex.Unlock()
    	if !c.isClient {
    		return errors.New("tls: VerifyHostname called on TLS server connection")
    	}
    	if !c.isHandshakeComplete.Load() {
    		return errors.New("tls: handshake has not yet been performed")
    	}
    	if len(c.verifiedChains) == 0 {
    		return errors.New("tls: handshake did not verify certificate chain")
    	}
    	return c.peerCertificates[0].VerifyHostname(host)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
Back to top