Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 706 for xtls (0.12 sec)

  1. pilot/pkg/config/kube/gateway/testdata/tls.status.yaml.golden

          status: "True"
          type: Programmed
        - lastTransitionTime: fake
          message: No errors found
          reason: ResolvedRefs
          status: "True"
          type: ResolvedRefs
        name: terminate-mtls
        supportedKinds:
        - group: gateway.networking.k8s.io
          kind: HTTPRoute
        - group: gateway.networking.k8s.io
          kind: GRPCRoute
      - attachedRoutes: 0
        conditions:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 01 20:54:36 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  2. pkg/test/echo/server/forwarder/tls.go

    	switch v {
    	case tls.VersionTLS10:
    		return "1.0"
    	case tls.VersionTLS11:
    		return "1.1"
    	case tls.VersionTLS12:
    		return "1.2"
    	case tls.VersionTLS13:
    		return "1.3"
    	default:
    		return fmt.Sprintf("unknown-%v", v)
    	}
    }
    
    func (c *tlsProtocol) Close() error {
    	return nil
    }
    
    func newTLSConnection(cfg *Config) (*tls.Conn, error) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 11 16:27:16 UTC 2022
    - 3.4K bytes
    - Viewed (0)
  3. pilot/pkg/xds/testdata/benchmarks/tls.yaml

    apiVersion: networking.istio.io/v1alpha3
    kind: ServiceEntry
    metadata:
      name: proxy-service-instance
    spec:
      hosts:
      - example.com
      ports:
      - number: 7070
        name: tls
        protocol: TLS
      resolution: STATIC
      location: MESH_INTERNAL
      endpoints:
      - address: 1.1.1.1
        labels:
          security.istio.io/tlsMode: istio
    ---
    # Set up .Services number of services.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jul 29 02:10:48 UTC 2023
    - 908 bytes
    - Viewed (0)
  4. pilot/pkg/grpc/tls.go

    func getTLSDialOption(opts *TLSOptions) (grpc.DialOption, error) {
    	rootCert, err := getRootCertificate(opts.RootCert)
    	if err != nil {
    		return nil, err
    	}
    	config := tls.Config{
    		GetClientCertificate: func(*tls.CertificateRequestInfo) (*tls.Certificate, error) {
    			var certificate tls.Certificate
    			key, cert := opts.Key, opts.Cert
    			if key != "" && cert != "" {
    				isExpired, err := util.IsCertExpired(opts.Cert)
    				if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 22:11:02 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  5. docs/sts/tls.md

    Also, note that the certificate has to contain the `Extended Key Usage: TLS Web Client Authentication`. Otherwise, MinIO would not accept the certificate as client certificate.
    
    Now, the STS certificate-based authentication happens in 4 steps:
    
    - Client sends HTTP `POST` request over a TLS connection hitting the MinIO TLS STS API.
    - MinIO verifies that the client certificate is valid.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 6K bytes
    - Viewed (0)
  6. tests/integration/ambient/testdata/automtls-partial-sidecar-dr-no-tls.yaml

    kind: PeerAuthentication
    metadata:
      name: "default"
      annotations:
        test-suite: "automtls-partial-sidecar-dr-no-tls"
    spec:
      mtls:
        mode: STRICT
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: "multiversion-route"
      annotations:
        test-suite: "automtls-partial-sidecar-dr-no-tls"
    spec:
      hosts:
      - "multiversion"
      http:
      - name: "vistio-route"
        match:
        - uri:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 16 18:55:23 UTC 2023
    - 996 bytes
    - Viewed (0)
  7. pilot/pkg/config/kube/ingress/testdata/tls.yaml

    apiVersion: networking.k8s.io/v1
    kind: Ingress
    metadata:
      name: tls
      namespace: bar
    spec:
      rules:
      - host: foo.org
        http:
          paths:
          - backend:
              service:
                name: httpbin
                port:
                  number: 80
            path: /*
      tls:
      - hosts:
          - foo.org
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 10 16:43:09 UTC 2023
    - 329 bytes
    - Viewed (0)
  8. src/crypto/internal/boring/fipstls/tls.go

    //go:build boringcrypto
    
    // Package fipstls allows control over whether crypto/tls requires FIPS-approved settings.
    // This package only exists with GOEXPERIMENT=boringcrypto, but the effects are independent
    // of the use of BoringCrypto.
    package fipstls
    
    import (
    	"internal/stringslite"
    	"sync/atomic"
    )
    
    var required atomic.Bool
    
    // Force forces crypto/tls to restrict TLS configurations to FIPS-approved settings.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 14:00:54 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  9. okhttp-tls/api/okhttp-tls.api

    	public final fun signedBy (Lokhttp3/tls/HeldCertificate;)Lokhttp3/tls/HeldCertificate$Builder;
    	public final fun validityInterval (JJ)Lokhttp3/tls/HeldCertificate$Builder;
    }
    
    public final class okhttp3/tls/HeldCertificate$Builder$Companion {
    }
    
    public final class okhttp3/tls/HeldCertificate$Companion {
    	public final fun decode (Ljava/lang/String;)Lokhttp3/tls/HeldCertificate;
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Feb 26 19:17:33 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  10. tests/integration/ambient/testdata/beta-mtls-automtls.yaml

    # No DR is added for this test. enableAutoMtls is expected on by default.
    apiVersion: security.istio.io/v1beta1
    kind: PeerAuthentication
    metadata:
      name: "default"
      annotations:
        test-suite: "beta-mtls-automtls"
    spec:
      mtls:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 16 18:55:23 UTC 2023
    - 247 bytes
    - Viewed (0)
Back to top