Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 59 for SerialNumber (0.26 sec)

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

    	if err != nil {
    		return nil, err
    	}
    	// SignatureAlgorithm will use the default algorithm.
    	// See https://golang.org/src/crypto/x509/x509.go?s=5131:5158#L1965 .
    	return &x509.Certificate{
    		SerialNumber:          serialNum,
    		Subject:               subject,
    		NotBefore:             now.Add(-ClockSkewGracePeriod),
    		NotAfter:              now.Add(ttl),
    		KeyUsage:              keyUsage,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 02 14:34:38 UTC 2023
    - 14.2K bytes
    - Viewed (0)
  2. istioctl/pkg/writer/ztunnel/configdump/testdata/dump.json

              "serialNumber": "305554775863395697262503895661564044819",
              "validFrom": "2023-03-21T13:02:57Z",
              "expirationTime": "2033-03-22T13:04:57Z"
            },
            {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 03:28:36 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  3. okhttp/src/test/java/okhttp3/ConnectionCoalescingTest.kt

        platform.assumeNotBouncyCastle()
        rootCa =
          HeldCertificate.Builder()
            .serialNumber(1L)
            .certificateAuthority(0)
            .commonName("root")
            .build()
        certificate =
          HeldCertificate.Builder()
            .signedBy(rootCa)
            .serialNumber(2L)
            .commonName(server.hostName)
            .addSubjectAlternativeName(server.hostName)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  4. src/crypto/x509/parser.go

    			}
    			rce.Raw = certSeq
    			if !certSeq.ReadASN1(&certSeq, cryptobyte_asn1.SEQUENCE) {
    				return nil, errors.New("x509: malformed crl")
    			}
    
    			rce.SerialNumber = new(big.Int)
    			if !certSeq.ReadASN1Integer(rce.SerialNumber) {
    				return nil, errors.New("x509: malformed serial number")
    			}
    			rce.RevocationTime, err = parseTime(&certSeq)
    			if err != nil {
    				return nil, err
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  5. pkg/apis/certificates/validation/validation_test.go

    	goodCert1 := mustMakeCertificate(t, &x509.Certificate{
    		SerialNumber: big.NewInt(0),
    		Subject: pkix.Name{
    			CommonName: "root1",
    		},
    		IsCA:                  true,
    		BasicConstraintsValid: true,
    	})
    
    	goodCert2 := mustMakeCertificate(t, &x509.Certificate{
    		SerialNumber: big.NewInt(0),
    		Subject: pkix.Name{
    			CommonName: "root2",
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:49 UTC 2023
    - 61K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/server/dynamiccertificates/named_certificates_test.go

    	priv, err := rsa.GenerateKey(rand.Reader, 2048)
    	if err != nil {
    		return nil, nil, err
    	}
    
    	template := x509.Certificate{
    		SerialNumber: big.NewInt(1),
    		Subject: pkix.Name{
    			CommonName: fmt.Sprintf("%s@%d", host, time.Now().Unix()),
    		},
    		NotBefore: time.Unix(0, 0),
    		NotAfter:  time.Now().Add(time.Hour * 24 * 365 * 100),
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Aug 20 08:42:09 UTC 2021
    - 8K bytes
    - Viewed (0)
  7. cluster/images/etcd/migrate/integration_test.go

    	priv, err := rsa.GenerateKey(cryptorand.Reader, 2048)
    	if err != nil {
    		return nil, nil, err
    	}
    
    	template := x509.Certificate{
    		SerialNumber: big.NewInt(1),
    		Subject: pkix.Name{
    			CommonName: fmt.Sprintf("%s@%d", host, time.Now().Unix()),
    		},
    		NotBefore: time.Unix(0, 0),
    		NotAfter:  time.Now().Add(time.Hour * 24 * 365 * 100),
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 28 07:33:23 UTC 2022
    - 11.4K bytes
    - Viewed (0)
  8. src/crypto/x509/verify_test.go

    	if err != nil {
    		return nil, nil, err
    	}
    
    	serialNumberLimit := new(big.Int).Lsh(big.NewInt(1), 128)
    	serialNumber, _ := rand.Int(rand.Reader, serialNumberLimit)
    
    	template := &Certificate{
    		SerialNumber: serialNumber,
    		Subject:      pkix.Name{CommonName: cn},
    		NotBefore:    time.Now().Add(-1 * time.Hour),
    		NotAfter:     time.Now().Add(24 * time.Hour),
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 110.2K bytes
    - Viewed (0)
  9. pkg/registry/certificates/certificates/storage/metrics_test.go

    	crPublicKey := &caPrivateKey.PublicKey // this is supposed to be public key of the signee but it does not matter for this test
    
    	now := time.Now()
    	tmpl := &x509.Certificate{Subject: pkix.Name{CommonName: "panda"}, SerialNumber: big.NewInt(1234), NotBefore: now, NotAfter: now.Add(duration)}
    
    	der, err := x509.CreateCertificate(rand.Reader, tmpl, caCert, crPublicKey, caPrivateKey)
    	if err != nil {
    		t.Fatal(err)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 15 14:34:53 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/authentication/request/x509/x509.go

    		if i%2 == 1 && i != len(h)-1 {
    			sb.WriteRune(':')
    		}
    	}
    	return sb.String()
    }
    
    func certificateIdentifier(c *x509.Certificate) string {
    	return fmt.Sprintf(
    		"SN=%d, SKID=%s, AKID=%s",
    		c.SerialNumber,
    		columnSeparatedHex(c.SubjectKeyId),
    		columnSeparatedHex(c.AuthorityKeyId),
    	)
    }
    
    // VerifyOptionFunc is function which provides a shallow copy of the VerifyOptions to the authenticator.  This allows
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Aug 18 01:31:22 UTC 2023
    - 10.3K bytes
    - Viewed (0)
Back to top