- Sort Score
- Result 10 results
- Languages All
Results 11 - 17 of 17 for serialNumber (0.09 sec)
-
okhttp-tls/src/test/java/okhttp3/tls/HeldCertificateTest.kt
.isEqualTo(certificate.getIssuerX500Principal().name) assertThat(certificate.getIssuerX500Principal().name).matches(Regex("CN=[0-9a-f-]{36}")) assertThat(certificate.serialNumber).isEqualTo(BigInteger.ONE) assertThat(certificate.subjectAlternativeNames).isNull() val deltaMillis = 1000.0 val durationMillis = TimeUnit.MINUTES.toMillis((60 * 24).toLong())
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 22.6K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/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: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Thu Jun 19 11:44:16 UTC 2025 - 19.1K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/KotlinSourceModernTest.kt
builder = builder.addSubjectAlternativeName("") builder = builder.commonName("") builder = builder.organizationalUnit("") builder = builder.serialNumber(BigInteger.ZERO) builder = builder.serialNumber(0L) builder = builder.keyPair(keyPair) builder = builder.keyPair(keyPair.public, keyPair.private) builder = builder.signedBy(HeldCertificate.Builder().build())
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sat Jun 21 20:36:35 UTC 2025 - 46.5K bytes - Viewed (0) -
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,
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 77K bytes - Viewed (0) -
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
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Mon Aug 07 09:39:17 UTC 2023 - 25.6K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/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` */
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sat Jun 21 20:36:35 UTC 2025 - 133.2K bytes - Viewed (0) -
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
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Wed Aug 14 18:58:28 UTC 2013 - 1.7M bytes - Viewed (0)