Uses of Class
org.conscrypt.ct.CertificateEntry
-
Packages that use CertificateEntry Package Description org.conscrypt.ct -
-
Uses of CertificateEntry in org.conscrypt.ct
Methods in org.conscrypt.ct that return CertificateEntry Modifier and Type Method Description static CertificateEntry
CertificateEntry. createForPrecertificate(byte[] tbsCertificate, byte[] issuerKeyHash)
static CertificateEntry
CertificateEntry. createForPrecertificate(OpenSSLX509Certificate leaf, OpenSSLX509Certificate issuer)
static CertificateEntry
CertificateEntry. createForX509Certificate(byte[] x509Certificate)
static CertificateEntry
CertificateEntry. createForX509Certificate(java.security.cert.X509Certificate cert)
Methods in org.conscrypt.ct with parameters of type CertificateEntry Modifier and Type Method Description void
SignedCertificateTimestamp. encodeTBS(java.io.OutputStream output, CertificateEntry certEntry)
TLS encode the signed part of the SCT, as described by RFC6962 section 3.2.byte[]
SignedCertificateTimestamp. encodeTBS(CertificateEntry certEntry)
TLS encode the signed part of the SCT, as described by RFC6962 section 3.2.VerifiedSCT.Status
CTLogInfo. verifySingleSCT(SignedCertificateTimestamp sct, CertificateEntry entry)
Verify the signature of a signed certificate timestamp for the given certificate entry against the log's public key.private VerifiedSCT.Status
CTVerifier. verifySingleSCT(SignedCertificateTimestamp sct, CertificateEntry certEntry)
Verify a single SCT for the given Certificate Entry
-