Uses of Class
org.conscrypt.ct.SignedCertificateTimestamp
Packages that use SignedCertificateTimestamp
-
Uses of SignedCertificateTimestamp in org.conscrypt.ct
Fields in org.conscrypt.ct declared as SignedCertificateTimestampMethods in org.conscrypt.ct that return SignedCertificateTimestampModifier and TypeMethodDescriptionstatic SignedCertificateTimestamp
SignedCertificateTimestamp.decode
(byte[] input, SignedCertificateTimestamp.Origin origin) Decode a TLS encoded SignedCertificateTimestamp structure.static SignedCertificateTimestamp
SignedCertificateTimestamp.decode
(InputStream input, SignedCertificateTimestamp.Origin origin) Decode a TLS encoded SignedCertificateTimestamp structure.Methods in org.conscrypt.ct that return types with arguments of type SignedCertificateTimestampModifier and TypeMethodDescriptionprivate List
<SignedCertificateTimestamp> CTVerifier.getSCTsFromOCSPResponse
(byte[] data, OpenSSLX509Certificate[] chain) Extract a list of SignedCertificateTimestamp contained in an OCSP response.private static List
<SignedCertificateTimestamp> CTVerifier.getSCTsFromSCTList
(byte[] data, SignedCertificateTimestamp.Origin origin) Parse an encoded SignedCertificateTimestampList into a list of SignedCertificateTimestamp instances, as described by RFC6962.private List
<SignedCertificateTimestamp> CTVerifier.getSCTsFromTLSExtension
(byte[] data) Extract a list of SignedCertificateTimestamp from a TLS "signed_certificate_timestamp" extension as described by RFC6962.private List
<SignedCertificateTimestamp> CTVerifier.getSCTsFromX509Extension
(OpenSSLX509Certificate leaf) Extract a list of SignedCertificateTimestamp embedded in an X509 certificate.Methods in org.conscrypt.ct with parameters of type SignedCertificateTimestampModifier and TypeMethodDescriptionCTLogInfo.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 EntryMethod parameters in org.conscrypt.ct with type arguments of type SignedCertificateTimestampModifier and TypeMethodDescriptionprivate void
CTVerifier.markSCTsAsInvalid
(List<SignedCertificateTimestamp> scts, CTVerificationResult result) Add every SCT inscts
toresult
with INVALID_SCT as statusprivate void
CTVerifier.verifyEmbeddedSCTs
(List<SignedCertificateTimestamp> scts, OpenSSLX509Certificate[] chain, CTVerificationResult result) Verify a list of SCTs which were embedded from an X509 certificate.private void
CTVerifier.verifyExternalSCTs
(List<SignedCertificateTimestamp> scts, OpenSSLX509Certificate leaf, CTVerificationResult result) Verify a list of SCTs which were not embedded in an X509 certificate, that is received through the TLS or OCSP extensions.Constructors in org.conscrypt.ct with parameters of type SignedCertificateTimestampModifierConstructorDescriptionVerifiedSCT
(SignedCertificateTimestamp sct, VerifiedSCT.Status status)