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

Side by Side Diff: net/cert/ct_serialization.h

Issue 71633002: Convert SignedCertificateClass to be ref_counted, and add an SCTStore in which to store them. Add S… Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: few lint fixes Created 7 years, 1 month 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 unified diff | Download patch
« no previous file with comments | « content/renderer/render_view_impl.cc ('k') | net/cert/ct_serialization.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef NET_CERT_CT_SERIALIZATION_H_ 5 #ifndef NET_CERT_CT_SERIALIZATION_H_
6 #define NET_CERT_CT_SERIALIZATION_H_ 6 #define NET_CERT_CT_SERIALIZATION_H_
7 7
8 #include <string> 8 #include <string>
9 #include <vector> 9 #include <vector>
10 10
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
56 // otherwise (note that the validity of each individual SCT should be checked 56 // otherwise (note that the validity of each individual SCT should be checked
57 // separately). 57 // separately).
58 NET_EXPORT_PRIVATE bool DecodeSCTList(base::StringPiece* input, 58 NET_EXPORT_PRIVATE bool DecodeSCTList(base::StringPiece* input,
59 std::vector<base::StringPiece>* output); 59 std::vector<base::StringPiece>* output);
60 60
61 // Decodes a single SCT from |input| to |output|. 61 // Decodes a single SCT from |input| to |output|.
62 // Returns true if all fields in the SCT could be read and decoded, false 62 // Returns true if all fields in the SCT could be read and decoded, false
63 // otherwise. 63 // otherwise.
64 NET_EXPORT_PRIVATE bool DecodeSignedCertificateTimestamp( 64 NET_EXPORT_PRIVATE bool DecodeSignedCertificateTimestamp(
65 base::StringPiece* input, 65 base::StringPiece* input,
66 ct::SignedCertificateTimestamp* output); 66 scoped_refptr<ct::SignedCertificateTimestamp>* output);
67 67
68 } // namespace ct 68 } // namespace ct
69 69
70 } // namespace net 70 } // namespace net
71 71
72 #endif // NET_CERT_CT_SERIALIZATION_H_ 72 #endif // NET_CERT_CT_SERIALIZATION_H_
OLDNEW
« no previous file with comments | « content/renderer/render_view_impl.cc ('k') | net/cert/ct_serialization.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698