Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 24 of 24 for serial_number (0.17 sec)

  1. cmd/test-utils_test.go

    	notAfter := notBefore.Add(validFor)
    
    	serialNumberLimit := new(big.Int).Lsh(big.NewInt(1), 128)
    	serialNumber, err := crand.Int(crand.Reader, serialNumberLimit)
    	if err != nil {
    		return nil, nil, fmt.Errorf("failed to generate serial number: %w", err)
    	}
    
    	template := x509.Certificate{
    		SerialNumber: serialNumber,
    		Subject: pkix.Name{
    			Organization: []string{"Acme Co"},
    		},
    		NotBefore: notBefore,
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Fri May 03 17:26:51 GMT 2024
    - 76.2K bytes
    - Viewed (0)
  2. api/go1.21.txt

    pkg crypto/x509, type RevocationListEntry struct, ReasonCode int #53573
    pkg crypto/x509, type RevocationListEntry struct, RevocationTime time.Time #53573
    pkg crypto/x509, type RevocationListEntry struct, SerialNumber *big.Int #53573
    pkg crypto/x509, type RevocationList struct, RevokedCertificateEntries []RevocationListEntry #53573
    pkg crypto/x509, type RevocationList struct, RevokedCertificates //deprecated #53573
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Mon Aug 07 09:39:17 GMT 2023
    - 25.6K bytes
    - Viewed (0)
  3. okhttp/src/test/java/okhttp3/URLConnectionTest.kt

          val result: MutableList<String> = ArrayList()
          for (certificate in certificates) {
            result.add(certificate.subjectDN.toString() + " " + certificate.serialNumber)
          }
          return result.toString()
        }
      }
    
      /**
       * Tests that use this will fail unless boot classpath is set. Ex. `-Xbootclasspath/p:/tmp/alpn-boot-8.0.0.v20140317`
       */
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Sat Jan 20 10:30:28 GMT 2024
    - 131.7K bytes
    - Viewed (0)
  4. api/go1.txt

    pkg crypto/x509, type Certificate struct, RawSubjectPublicKeyInfo []uint8
    pkg crypto/x509, type Certificate struct, RawTBSCertificate []uint8
    pkg crypto/x509, type Certificate struct, SerialNumber *big.Int
    pkg crypto/x509, type Certificate struct, Signature []uint8
    pkg crypto/x509, type Certificate struct, SignatureAlgorithm SignatureAlgorithm
    pkg crypto/x509, type Certificate struct, Subject pkix.Name
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Wed Aug 14 18:58:28 GMT 2013
    - 1.7M bytes
    - Viewed (2)
Back to top