Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 105 for san (0.1 sec)

  1. tools/certs/common.mk

    	@echo "basicConstraints = critical, CA:true, pathlen:0" >> $@
    	@echo "keyUsage = critical, digitalSignature, nonRepudiation, keyEncipherment, keyCertSign" >> $@
    	@echo "subjectAltName=@san" >> $@
    	@echo "[ san ]" >> $@
    	@echo "DNS.1 = $(INTERMEDIATE_SAN_DNS)" >> $@
    	@echo "[ req_dn ]" >> $@
    	@echo "O = $(INTERMEDIATE_ORG)" >> $@
    	@echo "CN = $(INTERMEDIATE_CN)" >> $@
    	@echo "L = $(L:/=)" >> $@
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 20 08:51:56 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/phases/certs/doc.go

    			.APIServer.CertSANs is an optional parameter for adding DNS names and IPs to the API Server serving cert SAN
    			.Etcd.Local.ServerCertSANs is an optional parameter for adding DNS names and IPs to the etcd serving cert SAN
    			.Etcd.Local.PeerCertSANs is an optional parameter for adding DNS names and IPs to the etcd peer cert SAN
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 02 09:38:56 UTC 2018
    - 1.9K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/cluster_tls_test.go

    			opts: &buildClusterOpts{
    				mutable: newTestCluster(),
    			},
    			tls: &networking.ClientTLSSettings{
    				Mode:            networking.ClientTLSSettings_ISTIO_MUTUAL,
    				SubjectAltNames: []string{"SAN"},
    				Sni:             "some-sni.com",
    			},
    			result: expectedResult{
    				tlsContext: &tls.UpstreamTlsContext{
    					CommonTlsContext: &tls.CommonTlsContext{
    						TlsParams: &tls.TlsParameters{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 03:53:05 UTC 2024
    - 60.9K bytes
    - Viewed (0)
  4. pilot/pkg/grpc/tls.go

    		config.ServerName = host
    	}
    	// For debugging on localhost (with port forward)
    	if strings.Contains(config.ServerName, "localhost") {
    		config.ServerName = "istiod.istio-system.svc"
    	}
    	if opts.SAN != "" {
    		config.ServerName = opts.SAN
    	}
    	// Compliance for all gRPC clients (e.g. Citadel)..
    	sec_model.EnforceGoCompliance(&config)
    	transportCreds := credentials.NewTLS(&config)
    	return grpc.WithTransportCredentials(transportCreds), 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. samples/certs/generate-workload.sh

    cat "$certchain" >> "$FINAL_DIR/workload-$sa-cert.pem"
    cp "$certchain" "$FINAL_DIR/workload-$sa-root-certs.pem"
    cat "$rootcert" >> "$FINAL_DIR/workload-$sa-root-certs.pem"
    
    echo "Generated workload-$sa-[cert|key].pem with URI SAN $san"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 07 23:57:35 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/util/webhook/metrics.go

    		Subsystem: "webhooks",
    		Namespace: "apiserver",
    		Name:      "x509_missing_san_total",
    		Help: "Counts the number of requests to servers missing SAN extension " +
    			"in their serving certificate OR the number of connection failures " +
    			"due to the lack of x509 certificate SAN extension missing " +
    			"(either/or, based on the runtime environment)",
    		StabilityLevel: metrics.ALPHA,
    	},
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 28 14:39:30 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  7. security/pkg/pki/util/verify_cert.go

    		Roots:         roots,
    	}
    	host := ""
    	if expectedFields != nil {
    		host = expectedFields.Host
    		san := host
    		// uri scheme is currently not supported in go VerifyOptions. We verify
    		// this uri at the end as a special case.
    		if strings.HasPrefix(host, "spiffe") {
    			san = ""
    		}
    		opts.DNSName = san
    	}
    	opts.KeyUsages = append(opts.KeyUsages, x509.ExtKeyUsageAny)
    
    	if _, err = cert.Verify(opts); err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Sep 05 10:37:29 UTC 2022
    - 5.9K bytes
    - Viewed (0)
  8. pkg/model/proxy_test.go

    							TlsSettings: &v1alpha3.ClientTLSSettings{
    								SubjectAltNames: []string{"san"},
    							},
    						},
    					}),
    				},
    			},
    			// nolint: lll
    			`{"PROXY_CONFIG":{"configPath":"foo","drainDuration":"5s","controlPlaneAuthPolicy":"MUTUAL_TLS","envoyAccessLogService":{"address":"address","tlsSettings":{"subjectAltNames":["san"]}}}}`,
    			model.BootstrapNodeMetadata{
    				NodeMetadata: model.NodeMetadata{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 20:38:02 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  9. security/pkg/pki/testdata/README.md

    ## ECC root certificate
    
    ```bash
    go run main.go -ec-sig-alg ECDSA -ca true
    ```
    
    ## ECC client certificate signed by root certificate
    
    ```bash
    go run main.go -ec-sig-alg ECDSA -san watt -signer-cert ../../pkg/pki/testdata/ec-root-cert.pem -signer-priv ../../pkg/pki/testdata/ec-root-key.pem -mode signer
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 25 06:24:06 UTC 2021
    - 442 bytes
    - Viewed (0)
  10. releasenotes/notes/add_trust_domans_san_validator.yaml

    kind: feature
    area: security
    
    issue:
     - https://github.com/istio/istio/issues/41666
    
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 24 16:11:07 UTC 2023
    - 250 bytes
    - Viewed (0)
Back to top