Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,465 for xtls (0.05 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. pilot/pkg/networking/core/tls.go

    	// Is there a virtual service with a TLS block that matches us?
    	hasTLSMatch := false
    
    	lb := &ListenerBuilder{node: node, push: push}
    	out := make([]*filterChainOpts, 0)
    	for _, cfg := range configs {
    		virtualService := cfg.Spec.(*v1alpha3.VirtualService)
    		for _, tls := range virtualService.Tls {
    			for _, match := range tls.Match {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  7. 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)
  8. releasenotes/notes/auto-mtls-passthrough.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: networking
    issue:
    - 23494
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 12 21:17:49 UTC 2021
    - 241 bytes
    - Viewed (0)
  9. releasenotes/notes/auto-mtls-headless.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: networking
    issue:
    - 24319
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 11 21:20:58 UTC 2020
    - 190 bytes
    - Viewed (0)
  10. pilot/pkg/config/kube/ingress/testdata/tls.yaml.golden

    apiVersion: networking.istio.io/v1alpha3
    kind: Gateway
    metadata:
      creationTimestamp: null
      name: tls-istio-autogenerated-k8s-ingress-bar
      namespace: istio-system
    spec:
      selector:
        istio: ingressgateway
      servers:
      - hosts:
        - foo.org
        port:
          name: https-443-ingress-tls-bar-0
          number: 443
          protocol: HTTPS
        tls:
          credentialName: myingress-cert
          mode: SIMPLE
      - hosts:
        - '*'
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 19 18:20:34 UTC 2023
    - 968 bytes
    - Viewed (0)
Back to top