Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 105 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. releasenotes/notes/auto-san-validation-support.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: traffic-management
    releaseNotes:
       - |
         **Added** the ability to perform automatic SAN validation based on the downstream HTTP host/authority header
         when `ENABLE_AUTO_SNI` and `VERIFY_CERTIFICATE_AT_CLIENT` feature flags are enabled.
    docs:
       - https://docs.google.com/document/d/1pTUl-Ng3nXAWJb7UGJtalftznpxQEfID/
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 17 16:51:08 UTC 2022
    - 503 bytes
    - Viewed (0)
  5. guava/src/com/google/common/graph/ValueGraphBuilder.java

     * MutableValueGraph<String, Double> graph =
     *     ValueGraphBuilder.undirected().allowsSelfLoops(true).build();
     * graph.putEdgeValue("San Francisco", "San Francisco", 0.0);
     * graph.putEdgeValue("San Jose", "San Jose", 0.0);
     * graph.putEdgeValue("San Francisco", "San Jose", 48.4);
     *
     * // Building an immutable value graph
     * ImmutableValueGraph<String, Double> immutableGraph =
     *     ValueGraphBuilder.undirected()
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 03 01:21:31 UTC 2022
    - 8K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. android/guava/src/com/google/common/graph/ValueGraphBuilder.java

     * MutableValueGraph<String, Double> graph =
     *     ValueGraphBuilder.undirected().allowsSelfLoops(true).build();
     * graph.putEdgeValue("San Francisco", "San Francisco", 0.0);
     * graph.putEdgeValue("San Jose", "San Jose", 0.0);
     * graph.putEdgeValue("San Francisco", "San Jose", 48.4);
     *
     * // Building an immutable value graph
     * ImmutableValueGraph<String, Double> immutableGraph =
     *     ValueGraphBuilder.undirected()
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 03 01:21:31 UTC 2022
    - 8K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top