Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 28 of 28 for mtls (0.08 sec)

  1. pilot/pkg/bootstrap/server.go

    }
    
    // hasCustomTLSCerts returns the tls cert paths, used both if custom TLS certificates are configured via args or by mounting in well known.
    // while tls args should still take precedence the aim is to encourage loading the DNS tls cert in the well known path locations.
    func hasCustomTLSCerts(tlsOptions TLSOptions) (ok bool, tlsCertPath, tlsKeyPath, caCertPath string) {
    	// load from tls args as priority
    	if hasCustomTLSCertArgs(tlsOptions) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  2. pkg/config/validation/validation.go

    		if tls.CaCrl != "" || tls.ServerCertificate != "" || tls.PrivateKey != "" || tls.CaCertificates != "" || tls.CredentialName != "" {
    			// Warn for backwards compatibility
    			v = AppendWarningf(v, "%v mode does not use certificates, they will be ignored", tls.Mode)
    		}
    	}
    
    	if (tls.Mode == networking.ServerTLSSettings_SIMPLE || tls.Mode == networking.ServerTLSSettings_MUTUAL ||
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  3. cluster/gce/util.sh

    #
    # Assumed vars:
    #   REPLICA_NAME
    #   PROJECT
    #   EXISTING_MASTER_NAME
    #   EXISTING_MASTER_ZONE
    #
    # $1: etcd client port
    # $2: etcd internal port
    # $3: whether etcd communication should use mtls
    # returns the result of ssh command which adds replica
    function add-replica-to-etcd() {
      local -r client_port="${1}"
      local -r internal_port="${2}"
      local -r use_mtls="${3}"
    
      TLSARG=""
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  4. pkg/workloadapi/workload.pb.go

    	// Types that are assignable to Destination:
    	//
    	//	*GatewayAddress_Hostname
    	//	*GatewayAddress_Address
    	Destination isGatewayAddress_Destination `protobuf_oneof:"destination"`
    	// port to reach the gateway at for mTLS HBONE connections
    	HboneMtlsPort uint32 `protobuf:"varint,3,opt,name=hbone_mtls_port,json=hboneMtlsPort,proto3" json:"hbone_mtls_port,omitempty"`
    }
    
    func (x *GatewayAddress) Reset() {
    	*x = GatewayAddress{}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 65.9K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. RELEASE.md

                `tf.function`, and graph modes. This gets rid of the need for users
                to manually call `Model._set_inputs` when using Custom Training
                Loops(CTLs).
            *   Dynamic shapes are supported for generators by calling the Model on
                the first batch we "peek" from the generator. This used to happen
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
Back to top