Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 86 for san (0.02 sec)

  1. security/pkg/pki/util/san.go

    		} else {
    			ids = append(ids, Identity{Type: TypeDNS, Value: []byte(host)})
    		}
    	}
    
    	san, err := BuildSANExtension(ids)
    	if err != nil {
    		return nil, fmt.Errorf("SAN extension building failure (%v)", err)
    	}
    
    	return san, nil
    }
    
    // BuildSANExtension builds a `pkix.Extension` of type "Subject
    // Alternative Name" based on the given identities.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Oct 14 06:50:22 UTC 2022
    - 6K bytes
    - Viewed (0)
  2. releasenotes/notes/auto-san-validation.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: security
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Dec 17 08:16:47 UTC 2023
    - 196 bytes
    - Viewed (0)
  3. releasenotes/notes/dr-san-validation.yaml

    John Howard <******@****.***> 1662658353 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 08 17:32:33 UTC 2022
    - 357 bytes
    - Viewed (0)
  4. okhttp/src/test/java/okhttp3/ConnectionCoalescingTest.kt

            .build()
        assert200Http2Response(execute(url), server.hostName)
        val sanUrl = url.newBuilder().host("san.com").build()
        dns["san.com"] =
          Arrays.asList(
            InetAddress.getByAddress("san.com", byteArrayOf(0, 0, 0, 0)),
            serverIps[0],
          )
        assert200Http2Response(execute(sanUrl), "san.com")
        assertThat(client.connectionPool.connectionCount()).isEqualTo(1)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  5. pkg/test/framework/components/istio/ca.go

    }
    
    // 7 days
    var saTokenExpiration int64 = 60 * 60 * 24 * 7
    
    func GetServiceAccountToken(c kubernetes.Interface, aud, ns, sa string) (string, error) {
    	san := san(ns, sa)
    
    	if got, f := cachedTokens.Load(san); f {
    		t := got.(token)
    		if t.expiration.After(time.Now().Add(time.Minute)) {
    			return t.token, nil
    		}
    		// Otherwise, its expired, load a new one
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 16:59:05 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  6. security/pkg/pki/util/san_test.go

    			expectedIDs:    nil,
    			expectedErrMsg: "the SAN extension does not exist",
    		},
    		"Extensions without SAN": {
    			exts: []pkix.Extension{
    				{Id: asn1.ObjectIdentifier{1, 2, 3, 4}},
    				{Id: asn1.ObjectIdentifier{3, 2, 1}},
    			},
    			expectedIDs:    nil,
    			expectedErrMsg: "the SAN extension does not exist",
    		},
    		"Extensions with bad SAN": {
    			exts: []pkix.Extension{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 12 17:36:33 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  7. samples/certs/README.md

    - `cert-chain-alt-2.pem`: alternative certificate chain signed by `root-cert-alt.pem`.
    - `workload-foo-[cert|key].pem`: workload certificate and key for URI SAN `spiffe://trust-domain-foo/ns/foo/sa/foo` signed by `ca-cert.key`.
    - `workload-bar-[cert|key].pem`: workload certificate and key for URI SAN `spiffe://trust-domain-bar/ns/bar/sa/bar` signed by `ca-cert.key`.
    - `workload-foo-root-certs.pem`: root and intermediate CA certificates for foo workload certificate.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 15 16:44:37 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top