Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 105 for san (0.07 sec)

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

    			dir, subset = model.TrafficDirectionOutbound, destination.Subset
    		}
    	}
    
    	return model.BuildSubsetKey(
    		dir,
    		subset,
    		host.Name(destination.Host),
    		port,
    	)
    }
    
    // NB: Un-typed SAN validation is ignored when typed is used, so only typed version must be used with this function.
    func buildCommonConnectTLSContext(proxy *model.Proxy, push *model.PushContext) *tls.CommonTlsContext {
    	ctx := &tls.CommonTlsContext{}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  2. manifests/charts/istiod-remote/templates/crd-all.gen.yaml

                                        description: '`insecureSkipVerify` specifies whether
                                          the proxy should skip verifying the CA signature
                                          and SAN for the server certificate corresponding
                                          to the host.'
                                        nullable: true
                                        type: boolean
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.7K bytes
    - Viewed (0)
  3. pilot/pkg/model/gateway.go

    // hosts and associated routes for that server.
    //
    // Note that the common case is one where multiple servers are exposed under a single multi-SAN cert on a single port.
    // In this case, we have a single https.<portNumber>.<portName>.<gatewayName>.<namespace> RDS for the HTTPS server.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 26K bytes
    - Viewed (0)
  4. src/crypto/tls/common.go

    		// valid for the name in the Common Name.
    		if x509Cert.Subject.CommonName != "" && len(x509Cert.DNSNames) == 0 {
    			c.NameToCertificate[x509Cert.Subject.CommonName] = cert
    		}
    		for _, san := range x509Cert.DNSNames {
    			c.NameToCertificate[san] = cert
    		}
    	}
    }
    
    const (
    	keyLogLabelTLS12           = "CLIENT_RANDOM"
    	keyLogLabelClientHandshake = "CLIENT_HANDSHAKE_TRAFFIC_SECRET"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  5. manifests/charts/base/crds/crd-all.gen.yaml

                                        description: '`insecureSkipVerify` specifies whether
                                          the proxy should skip verifying the CA signature
                                          and SAN for the server certificate corresponding
                                          to the host.'
                                        nullable: true
                                        type: boolean
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.6K bytes
    - Viewed (0)
  6. cmd/common-main.go

    	} else {
    		// Explicitly set 127.0.0.1 so Console will automatically bypass TLS verification to the local S3 API.
    		// This will save users from providing a certificate with IP or FQDN SAN that points to the local host.
    		os.Setenv("CONSOLE_MINIO_SERVER", fmt.Sprintf("%s://127.0.0.1:%s", getURLScheme(globalIsTLS), globalMinioPort))
    	}
    	if value := env.Get(config.EnvMinIOLogQueryURL, ""); value != "" {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 31.5K bytes
    - Viewed (0)
  7. pkg/istio-agent/xds_proxy.go

    	}
    	key, cert := agent.GetKeyCertsForXDS()
    	return &istiogrpc.TLSOptions{
    		RootCert:      xdsCACertPath,
    		Key:           key,
    		Cert:          cert,
    		ServerAddress: agent.proxyConfig.DiscoveryAddress,
    		SAN:           p.istiodSAN,
    	}, nil
    }
    
    // tapRequest() sends "req" to Istiod, and returns a matching response, or `nil` on timeout.
    // Requests are serialized -- only one may be in-flight at a time.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  8. pkg/adsc/adsc.go

    	SecretManager security.SecretManager
    
    	// For getting the certificate, using same code as SDS server.
    	// Either the JWTPath or the certs must be present.
    	JWTPath string
    
    	// XDSSAN is the expected SAN of the XDS server. If not set, the ProxyConfig.DiscoveryAddress is used.
    	XDSSAN string
    
    	// XDSRootCAFile explicitly set the root CA to be used for the XDS connection.
    	// Mirrors Envoy file.
    	XDSRootCAFile string
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 05 22:18:49 UTC 2024
    - 35K bytes
    - Viewed (0)
  9. pkg/config/validation/validation_test.go

    					InsecureSkipVerify: &wrapperspb.BoolValue{
    						Value: true,
    					},
    				},
    			},
    		}, valid: false},
    
    		{name: "InsecureSkipVerify is set true with tls mode simple, and the san is specified", in: &networking.DestinationRule{
    			Host: "reviews",
    			TrafficPolicy: &networking.TrafficPolicy{
    				Tls: &networking.ClientTLSSettings{
    					Mode:            networking.ClientTLSSettings_SIMPLE,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
  10. operator/cmd/mesh/testdata/manifest-generate/output/all_on.golden-show-in-gh-pull-request.yaml

                                        description: '`insecureSkipVerify` specifies whether
                                          the proxy should skip verifying the CA signature
                                          and SAN for the server certificate corresponding
                                          to the host.'
                                        nullable: true
                                        type: boolean
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 506.8K bytes
    - Viewed (0)
Back to top