| Index: net/cert/signed_certificate_timestamp.cc
|
| diff --git a/net/cert/signed_certificate_timestamp.cc b/net/cert/signed_certificate_timestamp.cc
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..deccb47eff37cac3d46e7aa3d4096b7a8479749e
|
| --- /dev/null
|
| +++ b/net/cert/signed_certificate_timestamp.cc
|
| @@ -0,0 +1,31 @@
|
| +// Copyright (c) 2013 The Chromium Authors. All rights reserved.
|
| +// Use of this source code is governed by a BSD-style license that can be
|
| +// found in the LICENSE file.
|
| +
|
| +#include "net/cert/signed_certificate_timestamp.h"
|
| +
|
| +namespace net {
|
| +
|
| +namespace ct {
|
| +
|
| +SignedCertificateTimestamp::SignedCertificateTimestamp() {}
|
| +
|
| +SignedCertificateTimestamp::~SignedCertificateTimestamp() {}
|
| +
|
| +LogEntry::LogEntry() {}
|
| +
|
| +LogEntry::~LogEntry() {}
|
| +
|
| +void LogEntry::Reset() {
|
| + type = LogEntry::LOG_ENTRY_TYPE_X509;
|
| + leaf_certificate.clear();
|
| + tbs_certificate.clear();
|
| +}
|
| +
|
| +DigitallySigned::DigitallySigned() {}
|
| +
|
| +DigitallySigned::~DigitallySigned() {}
|
| +
|
| +} // namespace ct
|
| +
|
| +} // namespace net
|
|
|