Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 97 for CommonName (0.2 sec)

  1. pkg/kubelet/certificate/bootstrap/bootstrap.go

    	if !connected {
    		return errors.New("timed out waiting to connect to apiserver")
    	}
    	return nil
    }
    
    // requestNodeCertificate will create a certificate signing request for a node
    // (Organization and CommonName for the CSR will be set as expected for node
    // certificates) and send it to API server, then it will watch the object's
    // status, once approved by API server, it will return the API server's issued
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 27 08:04:25 UTC 2022
    - 14.2K bytes
    - Viewed (0)
  2. pkg/kubelet/certificate/kubelet.go

    		// don't return a template if we have no addresses to request for
    		if len(hostnames) == 0 && len(ips) == 0 {
    			return nil
    		}
    		return &x509.CertificateRequest{
    			Subject: pkix.Name{
    				CommonName:   fmt.Sprintf("system:node:%s", nodeName),
    				Organization: []string{"system:nodes"},
    			},
    			DNSNames:    hostnames,
    			IPAddresses: ips,
    		}
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 03:07:16 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/server/dynamiccertificates/named_certificates.go

    // suitable for use in tls.Config#NamedCertificates.
    func getCertificateNames(cert *x509.Certificate) []string {
    	var names []string
    
    	cn := cert.Subject.CommonName
    	cnIsIP := netutils.ParseIPSloppy(cn) != nil
    	cnIsValidDomain := cn == "*" || len(validation.IsDNS1123Subdomain(strings.TrimPrefix(cn, "*."))) == 0
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 21 07:29:30 UTC 2022
    - 3.2K bytes
    - Viewed (0)
  4. src/crypto/x509/hybrid_pool_test.go

    		t.Fatalf("tls connection failed: %s", err)
    	}
    	googChain := c.ConnectionState().PeerCertificates
    
    	rootTmpl := &x509.Certificate{
    		SerialNumber:          big.NewInt(1),
    		Subject:               pkix.Name{CommonName: "Go test root"},
    		IsCA:                  true,
    		BasicConstraintsValid: true,
    		NotBefore:             time.Now().Add(-time.Hour),
    		NotAfter:              time.Now().Add(time.Hour * 10),
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:48:11 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  5. pkg/controller/certificates/approver/sarapprove.go

    	return capihelper.IsKubeletClientCSR(x509cr, usagesToSet(csr.Spec.Usages))
    }
    
    func isSelfNodeClientCert(csr *capi.CertificateSigningRequest, x509cr *x509.CertificateRequest) bool {
    	if csr.Spec.Username != x509cr.Subject.CommonName {
    		return false
    	}
    	return isNodeClientCert(csr, x509cr)
    }
    
    func usagesToSet(usages []capi.KeyUsage) sets.String {
    	result := sets.NewString()
    	for _, usage := range usages {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 21 16:03:42 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  6. cmd/kubeadm/test/kubeconfig/util.go

    	// Asserts the clientCert has ClientAuth ExtKeyUsage
    	certstestutil.AssertCertificateHasClientAuthUsage(t, currentClientCert)
    
    	// Asserts the clientCert has expected expectedUserName as CommonName
    	certstestutil.AssertCertificateHasCommonName(t, currentClientCert, expectedClientName)
    
    	// Asserts the clientCert has expected Organizations
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  7. cmd/sts-handlers.go

    	// Associate any service accounts to the certificate CN
    	parentUser := "tls" + getKeySeparator() + certificate.Subject.CommonName
    
    	claims[expClaim] = UTCNow().Add(expiry).Unix()
    	claims[subClaim] = certificate.Subject.CommonName
    	claims[audClaim] = certificate.Subject.Organization
    	claims[issClaim] = certificate.Issuer.CommonName
    	claims[parentClaim] = parentUser
    	secretKey, err := getTokenSigningKey()
    	if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  8. okhttp/src/test/java/okhttp3/SocketChannelTest.kt

      private val handshakeCertificates =
        run {
          // Generate a self-signed cert for the server to serve and the client to trust.
          val heldCertificate =
            HeldCertificate.Builder()
              .commonName(hostname)
              .addSubjectAlternativeName(hostname)
              .build()
          HandshakeCertificates.Builder()
            .heldCertificate(heldCertificate)
            .addTrustedCertificate(heldCertificate.certificate)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 8K bytes
    - Viewed (0)
  9. okhttp/src/test/java/okhttp3/internal/tls/HostnameVerifierTest.kt

        assertThat(verifier.verify("0:0:0:0:0:FFFF:C0A8:0101", session)).isTrue()
      }
    
      @Test fun generatedCertificate() {
        val heldCertificate =
          HeldCertificate.Builder()
            .commonName("Foo Corp")
            .addSubjectAlternativeName("foo.com")
            .build()
        val session = session(heldCertificate.certificatePem())
        assertThat(verifier.verify("foo.com", session)).isTrue()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 40.3K bytes
    - Viewed (0)
  10. okhttp-tls/src/main/kotlin/okhttp3/tls/internal/der/Certificate.kt

    import org.codehaus.mojo.animal_sniffer.IgnoreJRERequirement
    
    internal data class Certificate(
      val tbsCertificate: TbsCertificate,
      val signatureAlgorithm: AlgorithmIdentifier,
      val signatureValue: BitString,
    ) {
      val commonName: Any?
        get() {
          return tbsCertificate.subject
            .flatten()
            .firstOrNull { it.type == ObjectIdentifiers.COMMON_NAME }
            ?.value
        }
    
      val organizationalUnitName: Any?
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 6.4K bytes
    - Viewed (0)
Back to top