Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 46 for MUTUAL (0.1 sec)

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

      name: sidecar
      namespace: default
    spec:
      ingress:
        - defaultEndpoint: 0.0.0.0:9080
          port:
            name: tls
            number: 9080
            protocol: %s
          tls:
            mode: MUTUAL
            privateKey: "httpbinkey.pem"
            serverCertificate: "httpbin.pem"
            caCertificates: "rootCA.pem"
      workloadSelector:
        labels:
          app: foo
    ---
    `, protocol)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  2. architecture/ambient/ztunnel.md

    This is not really so much a new protocol, but rather a name we came up with to refer to the expectations of clients and servers communicating in the mesh.
    
    HBONE is just a standard HTTP `CONNECT` tunnel, over mutual TLS with mesh (SPIFFE) certificates, on a well known port (15008).
    The target destination address is set in the `:authority` header, and additional headers can be included as well.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 22:35:16 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation.go

    		allErrs = append(allErrs, validateCustomResourceDefinitionVersion(ctx, &version, fldPath.Child("versions").Index(i), hasStatusEnabled(subresources), opts)...)
    	}
    
    	// The top-level and per-version fields are mutual exclusive
    	if spec.Validation != nil && hasPerVersionSchema(spec.Versions) {
    		allErrs = append(allErrs, field.Forbidden(fldPath.Child("validation"), "top-level and per-version schemas are mutually exclusive"))
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 82.6K bytes
    - Viewed (0)
  4. internal/dsync/drwmutex.go

    	Acquire:         drwMutexAcquireTimeout,
    	RefreshCall:     drwMutexRefreshCallTimeout,
    	UnlockCall:      drwMutexUnlockCallTimeout,
    	ForceUnlockCall: drwMutexForceUnlockCallTimeout,
    }
    
    // A DRWMutex is a distributed mutual exclusion lock.
    type DRWMutex struct {
    	Names                []string
    	writeLocks           []string // Array of nodes that granted a write lock
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  5. pkg/config/validation/validation.go

    		if tls.ServerCertificate == "" {
    			v = AppendValidation(v, fmt.Errorf("MUTUAL TLS requires a server certificate"))
    		}
    		if tls.PrivateKey == "" {
    			v = AppendValidation(v, fmt.Errorf("MUTUAL TLS requires a private key"))
    		}
    		if tls.CaCertificates == "" {
    			v = AppendValidation(v, fmt.Errorf("MUTUAL TLS requires a client CA bundle"))
    		}
    	}
    	if tls.CaCrl != "" {
    		if tls.CredentialName != "" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  6. pilot/pkg/networking/util/util_test.go

    			want:    nil,
    		},
    		{
    			name:    "SIMPLE TLS and nil metadata",
    			tlsMode: networking.ClientTLSSettings_SIMPLE,
    			meta:    nil,
    			want:    alpnOverrideFalse,
    		},
    		{
    			name:    "MUTUAL TLS and nil metadata",
    			tlsMode: networking.ClientTLSSettings_SIMPLE,
    			meta:    nil,
    			want:    alpnOverrideFalse,
    		},
    		{
    			name:    "SIMPLE TLS and empty metadata",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 01:17:58 UTC 2024
    - 40K bytes
    - Viewed (0)
  7. src/crypto/tls/common.go

    	CipherSuite uint16
    
    	// NegotiatedProtocol is the application protocol negotiated with ALPN.
    	NegotiatedProtocol string
    
    	// NegotiatedProtocolIsMutual used to indicate a mutual NPN negotiation.
    	//
    	// Deprecated: this value is always true.
    	NegotiatedProtocolIsMutual bool
    
    	// ServerName is the value of the Server Name Indication extension sent by
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  8. pilot/pkg/networking/util/util.go

    				StringValue: subset,
    			},
    		}
    	}
    }
    
    // AddALPNOverrideToMetadata sets filter metadata `istio.alpn_override: "false"` in the given core.Metadata struct,
    // when TLS mode is SIMPLE or MUTUAL. If metadata is not initialized, builds a new metadata.
    func AddALPNOverrideToMetadata(metadata *core.Metadata, tlsMode networking.ClientTLSSettings_TLSmode) *core.Metadata {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  9. src/encoding/gob/type.go

    }
    
    func (s *sliceType) init(elem gobType) {
    	// Set our type id before evaluating the element's, in case it's our own.
    	setTypeId(s)
    	// See the comments about ids in newTypeObject. Only slices and
    	// structs have mutual recursion.
    	if elem.id() == 0 {
    		setTypeId(elem)
    	}
    	s.Elem = elem.id()
    }
    
    func (s *sliceType) safeString(seen map[typeId]bool) string {
    	if seen[s.Id] {
    		return s.Name
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 02:00:26 UTC 2024
    - 27.2K bytes
    - Viewed (0)
  10. src/crypto/x509/verify.go

    // Rather than doing a direct byte for byte equivalency check, we check if the
    // subject, public key, and SAN, if present, are equal. This prevents loops that
    // are created by mutual cross-signatures, or other cross-signature bridge
    // oddities.
    func alreadyInChain(candidate *Certificate, chain []*Certificate) bool {
    	type pubKeyEqual interface {
    		Equal(crypto.PublicKey) bool
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:58:39 UTC 2024
    - 35.7K bytes
    - Viewed (0)
Back to top