Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 105 for san (0.02 sec)

  1. docs/vi/docs/index.md

      <a href="https://fastapi.tiangolo.com"><img src="https://fastapi.tiangolo.com/img/logo-margin/logo-teal.png" alt="FastAPI"></a>
    </p>
    <p align="center">
        FastAPI framework, hiệu năng cao, dễ học, dễ code, sẵn sàng để tạo ra sản phẩm
    </p>
    <p align="center">
    <a href="https://github.com/tiangolo/fastapi/actions?query=workflow%3ATest+event%3Apush+branch%3Amaster" target="_blank">
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Apr 29 05:18:04 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  2. src/net/http/internal/testcert/testcert.go

    // license that can be found in the LICENSE file.
    
    // Package testcert contains a test-only localhost certificate.
    package testcert
    
    import "strings"
    
    // LocalhostCert is a PEM-encoded TLS cert with SAN IPs
    // "127.0.0.1" and "[::1]", expiring at Jan 29 16:00:00 2084 GMT.
    // generated from src/crypto/tls:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jan 08 00:24:25 UTC 2022
    - 3.6K bytes
    - Viewed (0)
  3. pkg/test/cert/ca/intermediate.go

    distinguished_name = req_dn
    [ req_ext ]
    subjectKeyIdentifier = hash
    basicConstraints = critical, CA:true, pathlen:0
    keyUsage = critical, digitalSignature, nonRepudiation, keyEncipherment, keyCertSign
    subjectAltName=@san
    [ san ]
    DNS.1 = istiod.{{ .SystemNamespace }}
    DNS.2 = istiod.{{ .SystemNamespace }}.svc
    DNS.3 = istio-pilot.{{ .SystemNamespace }}
    DNS.4 = istio-pilot.{{ .SystemNamespace }}.svc
    [ req_dn ]
    O = Istio
    CN = Intermediate CA
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 03 08:41:32 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/util/config/common.go

    }
    
    // LowercaseSANs can be used to force all SANs to be lowercase so it passes IsDNS1123Subdomain
    func LowercaseSANs(sans []string) {
    	for i, san := range sans {
    		lowercase := strings.ToLower(san)
    		if lowercase != san {
    			klog.V(1).Infof("lowercasing SAN %q to %q", san, lowercase)
    			sans[i] = lowercase
    		}
    	}
    }
    
    // VerifyAPIServerBindAddress can be used to verify if a bind address for the API Server is 0.0.0.0,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 11:04:08 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  5. security/pkg/pki/util/keycertbundle_test.go

    		expectedErr   string
    	}{
    		"No SAN RSA": {
    			caCertFile:    rootCertFile,
    			caKeyFile:     rootKeyFile,
    			certChainFile: nil,
    			rootCertFile:  rootCertFile,
    			certOptions: &CertOptions{
    				Host:       "test_ca.com",
    				TTL:        time.Hour,
    				Org:        "MyOrg",
    				IsCA:       true,
    				RSAKeySize: 2048,
    			},
    			expectedErr: "failed to extract id the SAN extension does not exist",
    		},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jan 21 06:07:50 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  6. tests/integration/security/filebased_tls_origination/main_test.go

    		TLSSettings: &common.TLSSettings{
    			RootCert:   mustReadCert("root-cert.pem"),
    			ClientCert: mustReadCert("cert-chain.pem"),
    			Key:        mustReadCert("key.pem"),
    			// Override hostname to match the SAN in the cert we are using
    			Hostname: "server.default.svc",
    		},
    		// Do not inject, as we are testing non-Istio TLS here
    		Subsets: []echo.SubsetConfig{{
    			Version:     "v1",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  7. security/pkg/pki/util/verify_cert_test.go

    			expectedErr:    "the generated private RSA key and cert doesn't match",
    		},
    		"Wrong SAN": {
    			privPem:        []byte(key),
    			certChainPem:   []byte(certChain),
    			rootCertPem:    []byte(rootCert),
    			expectedFields: verifyField2,
    			expectedErr:    "the certificate doesn't have the expected SAN for: spiffe",
    		},
    		"Timestamp error": {
    			privPem:        []byte(key),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 16 14:56:37 UTC 2022
    - 6.5K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/base/FunctionsTest.java

      }
    
      public void testComposition() {
        Map<String, Integer> mJapaneseToInteger = Maps.newHashMap();
        mJapaneseToInteger.put("Ichi", 1);
        mJapaneseToInteger.put("Ni", 2);
        mJapaneseToInteger.put("San", 3);
        Function<String, Integer> japaneseToInteger = Functions.forMap(mJapaneseToInteger);
    
        Map<Integer, String> mIntegerToSpanish = Maps.newHashMap();
        mIntegerToSpanish.put(1, "Uno");
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 16K bytes
    - Viewed (0)
  9. pkg/spiffe/spiffe.go

    		}
    	}
    	return out
    }
    
    // GetTrustDomainFromURISAN extracts the trust domain part from the URI SAN in the X.509 certificate.
    func GetTrustDomainFromURISAN(uriSan string) (string, error) {
    	parsed, err := ParseIdentity(uriSan)
    	if err != nil {
    		return "", fmt.Errorf("failed to parse URI SAN %s. Error: %v", uriSan, err)
    	}
    	return parsed.TrustDomain, nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  10. security/pkg/server/ca/server.go

    	return s.Node + "/" + s.ServiceAccount.String()
    }
    
    // CreateCertificate handles an incoming certificate signing request (CSR). It does
    // authentication and authorization. Upon validated, signs a certificate that:
    // the SAN is the identity of the caller in authentication result.
    // the subject public key is the public key in the CSR.
    // the validity duration is the ValidityDuration in request, or default value if the given duration is invalid.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 17:35:26 UTC 2024
    - 8K bytes
    - Viewed (0)
Back to top