Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,465 for xtls (0.04 sec)

  1. tests/integration/ambient/testdata/beta-mtls-on.yaml

    kind: PeerAuthentication
    metadata:
      name: "default"
      annotations:
        test-suite: "beta-mtls-on"
    spec:
      mtls:
        mode: STRICT
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: DestinationRule
    metadata:
      name: "default"
      annotations:
        test-suite: "beta-mtls-on"
    spec:
      host: "*.local"
      trafficPolicy:
        tls:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 16 18:55:23 UTC 2023
    - 384 bytes
    - Viewed (0)
  2. tests/integration/ambient/testdata/beta-mtls-permissive.yaml

    kind: PeerAuthentication
    metadata:
      name: "default"
      annotations:
        test-suite: "beta-mtls-permissive"
    spec:
      mtls:
        mode: PERMISSIVE
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: DestinationRule
    metadata:
      name: "default"
      annotations:
        test-suite: "beta-mtls-permissive"
    spec:
      host: "*.local"
      trafficPolicy:
        tls:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 16 18:55:23 UTC 2023
    - 524 bytes
    - Viewed (0)
  3. tests/integration/ambient/testdata/beta-mtls-off.yaml

    kind: PeerAuthentication
    metadata:
      name: "default"
      annotations:
        test-suite: "beta-mtls-off"
    spec:
      mtls:
        mode: DISABLE
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: DestinationRule
    metadata:
      name: "default"
      annotations:
        test-suite: "beta-mtls-off"
    spec:
      host: "*.local"
      trafficPolicy:
        tls:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 16 18:55:23 UTC 2023
    - 382 bytes
    - Viewed (0)
  4. releasenotes/notes/passthrough-tls.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: security
    issue:
    - 31297
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 25 12:04:03 UTC 2021
    - 231 bytes
    - Viewed (0)
  5. tests/integration/ambient/testdata/beta-per-port-mtls.yaml

      annotations:
        test-suite: "beta-per-port-mtls"
    spec:
      selector:
        matchLabels:
          app: b
      mtls:
        mode: DISABLE
      portLevelMtls:
        # 8090 is the targetPort for service http(80)
        8090:
          mode: STRICT
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: DestinationRule
    metadata:
      name: "default"
      annotations:
        test-suite: "beta-per-port-mtls"
    spec:
      host: "*.local"
      trafficPolicy:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 16 18:55:23 UTC 2023
    - 530 bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top