- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 15 for signatureAlgorithm (0.13 seconds)
-
internal/config/certsinfo.go
func CertificateText(cert *x509.Certificate) string { var buf strings.Builder buf.WriteString(color.Blue("\nCertificate:\n")) if cert.SignatureAlgorithm != x509.UnknownSignatureAlgorithm { buf.WriteString(color.Blue("%4sSignature Algorithm: ", "") + color.Bold(fmt.Sprintf("%s\n", cert.SignatureAlgorithm))) } // Issuer information buf.WriteString(color.Blue("%4sIssuer: ", "")) printName(cert.Issuer.Names, &buf)
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Tue Nov 16 17:28:29 GMT 2021 - 3.1K bytes - Click Count (0) -
okhttp-tls/src/main/kotlin/okhttp3/tls/HeldCertificate.kt
issuer = subject } val signatureAlgorithm = signatureAlgorithm(issuerKeyPair) // Subset of certificate data that's covered by the signature. val tbsCertificate = TbsCertificate( // v3: version = 2L, serialNumber = serialNumber ?: BigInteger.ONE, signature = signatureAlgorithm, issuer = issuer, validity = validity(),Created: Fri Dec 26 11:42:13 GMT 2025 - Last Modified: Wed Mar 19 19:25:20 GMT 2025 - 21.6K bytes - Click Count (0) -
okhttp-tls/src/main/kotlin/okhttp3/tls/internal/der/CertificateAdapters.kt
Adapters.BIT_STRING, decompose = { listOf( it.tbsCertificate, it.signatureAlgorithm, it.signatureValue, ) }, construct = { Certificate( tbsCertificate = it[0] as TbsCertificate, signatureAlgorithm = it[1] as AlgorithmIdentifier, signatureValue = it[2] as BitString, ) }, )Created: Fri Dec 26 11:42:13 GMT 2025 - Last Modified: Wed Mar 19 19:25:20 GMT 2025 - 13.6K bytes - Click Count (0) -
api/go1.15.txt
pkg crypto/x509, type RevocationList struct, Number *big.Int pkg crypto/x509, type RevocationList struct, RevokedCertificates []pkix.RevokedCertificate pkg crypto/x509, type RevocationList struct, SignatureAlgorithm SignatureAlgorithm pkg crypto/x509, type RevocationList struct, ThisUpdate time.Time pkg database/sql, method (*DB) SetConnMaxIdleTime(time.Duration) pkg database/sql, method (*Row) Err() error
Created: Tue Dec 30 11:13:12 GMT 2025 - Last Modified: Fri Jul 17 02:15:01 GMT 2020 - 7.6K bytes - Click Count (0) -
api/go1.8.txt
pkg crypto/x509, const SHA256WithRSAPSS = 13 pkg crypto/x509, const SHA256WithRSAPSS SignatureAlgorithm pkg crypto/x509, const SHA384WithRSAPSS = 14 pkg crypto/x509, const SHA384WithRSAPSS SignatureAlgorithm pkg crypto/x509, const SHA512WithRSAPSS = 15 pkg crypto/x509, const SHA512WithRSAPSS SignatureAlgorithm pkg crypto/x509, type UnknownAuthorityError struct, Cert *Certificate pkg database/sql, const LevelDefault = 0
Created: Tue Dec 30 11:13:12 GMT 2025 - Last Modified: Wed Dec 21 05:25:57 GMT 2016 - 16.3K bytes - Click Count (0) -
okhttp-tls/src/test/java/okhttp3/tls/internal/der/DerCertificatesTest.kt
unusedBitsCount = 0, ), ), issuerUniqueID = null, subjectUniqueID = null, extensions = listOf(), ), signatureAlgorithm = AlgorithmIdentifier( algorithm = SHA256_WITH_RSA_ENCRYPTION, parameters = null, ), signatureValue = BitString(Created: Fri Dec 26 11:42:13 GMT 2025 - Last Modified: Wed Mar 19 19:25:20 GMT 2025 - 43.9K bytes - Click Count (0) -
okhttp-tls/src/main/kotlin/okhttp3/tls/internal/der/Certificate.kt
import okio.Buffer import okio.ByteString 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()
Created: Fri Dec 26 11:42:13 GMT 2025 - Last Modified: Mon Jan 08 01:13:22 GMT 2024 - 6.4K bytes - Click Count (0) -
api/go1.6.txt
pkg crypto/tls, type RecordHeaderError struct, Msg string pkg crypto/tls, type RecordHeaderError struct, RecordHeader [5]uint8 pkg crypto/x509, method (InsecureAlgorithmError) Error() string pkg crypto/x509, method (SignatureAlgorithm) String() string pkg crypto/x509, type InsecureAlgorithmError int pkg database/sql, method (*DB) SetConnMaxLifetime(time.Duration) pkg debug/dwarf, const ClassUnknown = 0 pkg debug/dwarf, const ClassUnknown Class
Created: Tue Dec 30 11:13:12 GMT 2025 - Last Modified: Wed Jan 13 23:40:13 GMT 2016 - 12.9K bytes - Click Count (0) -
api/go1.3.txt
pkg crypto/x509, type CertificateRequest struct, RawTBSCertificateRequest []uint8 pkg crypto/x509, type CertificateRequest struct, Signature []uint8 pkg crypto/x509, type CertificateRequest struct, SignatureAlgorithm SignatureAlgorithm pkg crypto/x509, type CertificateRequest struct, Subject pkix.Name pkg crypto/x509, type CertificateRequest struct, Version int pkg crypto/x509/pkix, type AttributeTypeAndValueSET struct
Created: Tue Dec 30 11:13:12 GMT 2025 - Last Modified: Mon Jun 02 02:45:00 GMT 2014 - 117K bytes - Click Count (0) -
cmd/admin-handlers.go
for _, v := range c.URIs { check ^= xxh3.HashString(v.String()) } tlsInfo.Certs = append(tlsInfo.Certs, madmin.TLSCert{ PubKeyAlgo: c.PublicKeyAlgorithm.String(), SignatureAlgo: c.SignatureAlgorithm.String(), NotBefore: c.NotBefore, NotAfter: c.NotAfter, Checksum: strconv.FormatUint(check, 16), }) } } return tlsInfo }Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Sun Sep 28 20:59:21 GMT 2025 - 99.7K bytes - Click Count (0)