HomeSort by relevance Sort by last modified time
    Searched refs:SignedCertificateTimestamp (Results 1 - 23 of 23) sorted by null

  /external/chromium_org/content/public/browser/
signed_certificate_timestamp_store.h 13 struct SignedCertificateTimestamp;
20 // to store/retrieve SignedCertificateTimestamp objects. When stored,
21 // SignedCertificateTimestamp objects are associated with a RenderProcessHost.
38 virtual int Store(net::ct::SignedCertificateTimestamp* sct,
45 int sct_id, scoped_refptr<net::ct::SignedCertificateTimestamp>* sct) = 0;
  /external/chromium_org/net/ssl/
signed_certificate_timestamp_and_status.h 16 struct SignedCertificateTimestamp;
21 const scoped_refptr<ct::SignedCertificateTimestamp>& sct,
26 scoped_refptr<ct::SignedCertificateTimestamp> sct_;
signed_certificate_timestamp_and_status.cc 12 const scoped_refptr<ct::SignedCertificateTimestamp>& sct,
  /external/chromium_org/content/browser/
signed_certificate_timestamp_store_impl.h 24 net::ct::SignedCertificateTimestamp* sct,
28 scoped_refptr<net::ct::SignedCertificateTimestamp>* sct) OVERRIDE;
36 RendererDataMemoizingStore<net::ct::SignedCertificateTimestamp> store_;
signed_certificate_timestamp_store_impl.cc 28 net::ct::SignedCertificateTimestamp* sct,
35 scoped_refptr<net::ct::SignedCertificateTimestamp>* sct) {
  /external/chromium_org/net/cert/
signed_certificate_timestamp.h 75 // SignedCertificateTimestamp struct in RFC 6962, Section 3.2.
76 struct NET_EXPORT SignedCertificateTimestamp
77 : public base::RefCountedThreadSafe<SignedCertificateTimestamp> {
78 // Predicate functor used in maps when SignedCertificateTimestamp is used as
81 bool operator()(const scoped_refptr<SignedCertificateTimestamp>& lhs,
82 const scoped_refptr<SignedCertificateTimestamp>& rhs) const;
97 SignedCertificateTimestamp();
100 static scoped_refptr<SignedCertificateTimestamp> CreateFromPickle(
118 friend class base::RefCountedThreadSafe<SignedCertificateTimestamp>;
120 ~SignedCertificateTimestamp();
    [all...]
signed_certificate_timestamp_unittest.cc 25 sample_sct_->origin = SignedCertificateTimestamp::SCT_FROM_OCSP_RESPONSE;
30 scoped_refptr<SignedCertificateTimestamp> sample_sct_;
39 scoped_refptr<SignedCertificateTimestamp> unpickled_sct(
40 SignedCertificateTimestamp::CreateFromPickle(&iter));
42 SignedCertificateTimestamp::LessThan less_than;
signed_certificate_timestamp.cc 13 bool SignedCertificateTimestamp::LessThan::operator()(
14 const scoped_refptr<SignedCertificateTimestamp>& lhs,
15 const scoped_refptr<SignedCertificateTimestamp>& rhs) const {
29 SignedCertificateTimestamp::SignedCertificateTimestamp() {}
31 SignedCertificateTimestamp::~SignedCertificateTimestamp() {}
33 void SignedCertificateTimestamp::Persist(Pickle* pickle) {
46 scoped_refptr<SignedCertificateTimestamp>
47 SignedCertificateTimestamp::CreateFromPickle(PickleIterator* iter)
    [all...]
ct_verify_result.h 16 typedef std::vector<scoped_refptr<SignedCertificateTimestamp> > SCTList;
ct_log_verifier_unittest.cc 35 scoped_refptr<ct::SignedCertificateTimestamp> cert_sct;
45 scoped_refptr<ct::SignedCertificateTimestamp> precert_sct;
55 scoped_refptr<ct::SignedCertificateTimestamp> cert_sct;
68 scoped_refptr<ct::SignedCertificateTimestamp> cert_sct;
multi_log_ct_verifier.h 55 ct::SignedCertificateTimestamp::Origin origin,
60 scoped_refptr<ct::SignedCertificateTimestamp> sct,
multi_log_ct_verifier.cc 63 ct::SignedCertificateTimestamp::SCT_EMBEDDED,
90 ct::SignedCertificateTimestamp::SCT_FROM_OCSP_RESPONSE,
96 ct::SignedCertificateTimestamp::SCT_FROM_TLS_EXTENSION,
116 ct::SignedCertificateTimestamp::Origin origin,
132 scoped_refptr<ct::SignedCertificateTimestamp> decoded_sct;
146 scoped_refptr<ct::SignedCertificateTimestamp> sct,
ct_objects_extractor_unittest.cc 39 scoped_refptr<SignedCertificateTimestamp>* sct) {
60 scoped_refptr<ct::SignedCertificateTimestamp> sct(
61 new ct::SignedCertificateTimestamp());
64 EXPECT_EQ(sct->version, SignedCertificateTimestamp::SCT_VERSION_1);
101 scoped_refptr<ct::SignedCertificateTimestamp> sct(
102 new ct::SignedCertificateTimestamp());
116 scoped_refptr<ct::SignedCertificateTimestamp> sct(
117 new ct::SignedCertificateTimestamp());
ct_signed_certificate_timestamp_log_param.cc 22 const char* OriginToString(ct::SignedCertificateTimestamp::Origin origin) {
24 case ct::SignedCertificateTimestamp::SCT_EMBEDDED:
26 case ct::SignedCertificateTimestamp::SCT_FROM_TLS_EXTENSION:
28 case ct::SignedCertificateTimestamp::SCT_FROM_OCSP_RESPONSE:
91 const ct::SignedCertificateTimestamp& sct) {
ct_log_verifier.cc 23 const ct::SignedCertificateTimestamp& sct) {
ct_log_verifier.h 47 const ct::SignedCertificateTimestamp& sct);
ct_serialization.h 66 scoped_refptr<ct::SignedCertificateTimestamp>* output);
multi_log_ct_verifier_unittest.cc 56 ct::SignedCertificateTimestamp::Origin origin) {
90 result, ct::SignedCertificateTimestamp::SCT_EMBEDDED) &&
149 result, ct::SignedCertificateTimestamp::SCT_FROM_TLS_EXTENSION));
ct_serialization.cc 292 WriteUint(kVersionLength, SignedCertificateTimestamp::SCT_VERSION_1,
321 scoped_refptr<SignedCertificateTimestamp>* output) {
322 scoped_refptr<SignedCertificateTimestamp> result(
323 new SignedCertificateTimestamp());
327 if (version != SignedCertificateTimestamp::SCT_VERSION_1) {
332 result->version = SignedCertificateTimestamp::SCT_VERSION_1;
ct_serialization_unittest.cc 138 scoped_refptr<ct::SignedCertificateTimestamp> sct;
154 scoped_refptr<ct::SignedCertificateTimestamp> sct;
  /external/chromium_org/net/test/
ct_test_util.h 17 struct SignedCertificateTimestamp;
45 void GetX509CertSCT(scoped_refptr<SignedCertificateTimestamp>* sct);
48 void GetPrecertSCT(scoped_refptr<SignedCertificateTimestamp>* sct);
ct_test_util.cc 189 void GetX509CertSCT(scoped_refptr<SignedCertificateTimestamp>* sct_ref) {
191 *sct_ref = new SignedCertificateTimestamp();
192 SignedCertificateTimestamp *const sct(sct_ref->get());
193 sct->version = ct::SignedCertificateTimestamp::SCT_VERSION_1;
206 void GetPrecertSCT(scoped_refptr<SignedCertificateTimestamp>* sct_ref) {
208 *sct_ref = new SignedCertificateTimestamp();
209 SignedCertificateTimestamp *const sct(sct_ref->get());
210 sct->version = ct::SignedCertificateTimestamp::SCT_VERSION_1;
  /external/chromium_org/net/http/
http_response_info.cc 219 scoped_refptr<ct::SignedCertificateTimestamp> sct(
220 ct::SignedCertificateTimestamp::CreateFromPickle(&iter));

Completed in 105 milliseconds