#include "net/cert/signed_certificate_timestamp.h"
#include "base/pickle.h"
namespace net::ct {
bool SignedCertificateTimestamp::LessThan::operator()(
const scoped_refptr<SignedCertificateTimestamp>& lhs,
const scoped_refptr<SignedCertificateTimestamp>& rhs) const { … }
SignedCertificateTimestamp::SignedCertificateTimestamp() = default;
SignedCertificateTimestamp::~SignedCertificateTimestamp() = default;
void SignedCertificateTimestamp::Persist(base::Pickle* pickle) { … }
scoped_refptr<SignedCertificateTimestamp>
SignedCertificateTimestamp::CreateFromPickle(base::PickleIterator* iter) { … }
SignedEntryData::SignedEntryData() = default;
SignedEntryData::~SignedEntryData() = default;
void SignedEntryData::Reset() { … }
DigitallySigned::DigitallySigned() = default;
DigitallySigned::~DigitallySigned() = default;
bool DigitallySigned::SignatureParametersMatch(
HashAlgorithm other_hash_algorithm,
SignatureAlgorithm other_signature_algorithm) const { … }
}