Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 105 for san (0.02 sec)

  1. docs/vi/docs/python-types.md

        Tương tự như kiểu dữ liệu, `List` bạn import từ `typing`.
    
        Như danh sách là một kiểu dữ liệu chứa các kiểu dữ liệu có sẵn, bạn đặt chúng bên trong dấu ngoặc vuông:
    
        ```Python hl_lines="4"
        {!> ../../../docs_src/python_types/tutorial006.py!}
        ```
    
    !!! info
        Các kiểu dữ liệu có sẵn bên trong dấu ngoặc vuông được gọi là "tham số kiểu dữ liệu".
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  2. security/pkg/pki/ca/ca_test.go

    		}
    		san := util.ExtractSANExtension(cert.Extensions)
    		if san == nil {
    			t.Errorf("%s: No SAN extension is found in the certificate", id)
    		}
    		expected, err := util.BuildSubjectAltNameExtension(subjectID)
    		if err != nil {
    			t.Errorf("%s: BuildSubjectAltNameExtension error: %v", id, err)
    		}
    		if !reflect.DeepEqual(expected, san) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 08:51:27 UTC 2023
    - 29.1K bytes
    - Viewed (0)
  3. pkg/test/framework/components/echo/common/deployment/external.go

    			ClientCert: file.MustAsString(path.Join(env.IstioSrc, "tests/testdata/certs/dns/cert-chain.pem")),
    			Key:        file.MustAsString(path.Join(env.IstioSrc, "tests/testdata/certs/dns/key.pem")),
    			// Override hostname to match the SAN in the cert we are using
    			// TODO(nmittler): We should probably make this the same as ExternalHostname
    			Hostname: "server.default.svc",
    		},
    		Subsets: []echo.SubsetConfig{
    			{
    				Version:     "v1",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 20 16:01:31 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  4. tests/integration/security/ca_custom_root/trust_domain_alias_secure_naming_test.go

    //
    //	certificate for server workloads to give them different trust domains.
    //
    // 2. One client workload with sidecar injected.
    // 3. Two naked server workloads with custom certs whose URI SAN have different SPIFFE trust domains.
    // 4. PeerAuthentication with strict mtls, to enforce the mtls connection.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  5. pkg/test/echo/server/forwarder/config.go

    				fwLog.Errorf("Failed to parse client certificate: %v", err)
    			}
    			fwLog.Debugf("Using client certificate [%s] issued by %s", cert.SerialNumber, cert.Issuer)
    			for _, uri := range cert.URIs {
    				fwLog.Debugf("  URI SAN: %s", uri)
    			}
    		}
    		// nolint: unparam
    		return func(info *tls.CertificateRequestInfo) (*tls.Certificate, error) {
    			fwLog.Debugf("Peer asking for client certificate")
    			for i, ca := range info.AcceptableCAs {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Oct 08 09:39:20 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  6. internal/s3select/simdj/testdata/parking-citations-10.json.zst

    lationDescr":"NO STOPPING/STANDING","Fine":93,"Latitude":99999,"Longitude":99999} {"Ticket":1106226590,"IssueData":"2015-09-15T00:00:00","IssueTime":"19","RPState":"CA","PlateExpiry":"201507","Make":"CHEV","BodyStyle":"VN","Color":"GY","Location":"SAN PEDRO S/O BOYD","Route":"1A35W","Agency":1,"ViolationCode":"4000A1","ViolationDescr":"NO EVIDENCE OF REG","Fine":50,"Latitude":99999,"Longitude":99999} {"Ticket":1106500452,"IssueData":"2015-12-17T00:00:00","IssueTime":"1710","RPState":"CA","PlateE...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 01 21:59:40 UTC 2021
    - 693 bytes
    - Viewed (0)
  7. src/crypto/x509/verify.go

    		if len(c.IPAddresses) == 0 {
    			return "x509: cannot validate certificate for " + h.Host + " because it doesn't contain any IP SANs"
    		}
    		for _, san := range c.IPAddresses {
    			if len(valid) > 0 {
    				valid += ", "
    			}
    			valid += san.String()
    		}
    	} else {
    		valid = strings.Join(c.DNSNames, ", ")
    	}
    
    	if len(valid) == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:58:39 UTC 2024
    - 35.7K bytes
    - Viewed (0)
  8. src/crypto/x509/name_constraints_test.go

    		expectedError: "incompatible key usage",
    	},
    
    	// An invalid DNS SAN should be detected only at validation time so
    	// that we can process CA certificates in the wild that have invalid SANs.
    	// See https://github.com/golang/go/issues/23995
    
    	// #77: an invalid DNS or mail SAN will not be detected if name constraint
    	// checking is not triggered.
    	{
    		roots: make([]constraintsSpec, 1),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 22:40:21 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  9. src/crypto/x509/parser.go

    		return errors.New("x509: invalid subject alternative names")
    	}
    	for !der.Empty() {
    		var san cryptobyte.String
    		var tag cryptobyte_asn1.Tag
    		if !der.ReadAnyASN1(&san, &tag) {
    			return errors.New("x509: invalid subject alternative name")
    		}
    		if err := callback(int(tag^0x80), san); err != nil {
    			return err
    		}
    	}
    
    	return nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  10. tools/packaging/common/sidecar.env

    # ISTIO_CUSTOM_IP_TABLES=false
    
    # Location of provisioning certificates. VM provisioning tools must generate a certificate with
    # the expected SAN. Istio-agent will use it to connect to istiod and get fresh certificates.
    # PROV_CERT=/var/run/secrets/istio
    
    # Location to save the certificates from the CA. Setting this to the same location with PROV_CERT
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 31 18:02:42 UTC 2022
    - 4.7K bytes
    - Viewed (0)
Back to top