Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(172)

Unified Diff: net/cert/signed_certificate_timestamp.cc

Issue 1845113003: Certificate Transparency: Start tracking logs' state (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « net/cert/signed_certificate_timestamp.h ('k') | net/cert/signed_tree_head.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/cert/signed_certificate_timestamp.cc
diff --git a/net/cert/signed_certificate_timestamp.cc b/net/cert/signed_certificate_timestamp.cc
index f5f9c946481ead42932d80b107b4d79445daf856..b673afbe8fb1f261ab7dce54ff3fdb84626ccd7e 100644
--- a/net/cert/signed_certificate_timestamp.cc
+++ b/net/cert/signed_certificate_timestamp.cc
@@ -89,6 +89,13 @@ void LogEntry::Reset() {
DigitallySigned::DigitallySigned() {}
+DigitallySigned::DigitallySigned(HashAlgorithm hash_algo,
+ SignatureAlgorithm sig_algo,
+ const std::string& sig_data)
+ : hash_algorithm(hash_algo),
+ signature_algorithm(sig_algo),
+ signature_data(sig_data) {}
+
DigitallySigned::~DigitallySigned() {}
bool DigitallySigned::SignatureParametersMatch(
« no previous file with comments | « net/cert/signed_certificate_timestamp.h ('k') | net/cert/signed_tree_head.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698