forked from chromium/chromium
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathct_verify_result.cc
35 lines (24 loc) · 941 Bytes
/
ct_verify_result.cc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
// Copyright 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/ct_verify_result.h"
#include "net/cert/ct_policy_status.h"
namespace net {
namespace ct {
CTVerifyResult::CTVerifyResult()
: policy_compliance(
ct::CTPolicyCompliance::CT_POLICY_COMPLIANCE_DETAILS_NOT_AVAILABLE),
policy_compliance_required(false) {}
CTVerifyResult::CTVerifyResult(const CTVerifyResult& other) = default;
CTVerifyResult::~CTVerifyResult() = default;
SCTList SCTsMatchingStatus(
const SignedCertificateTimestampAndStatusList& sct_and_status_list,
SCTVerifyStatus match_status) {
SCTList result;
for (const auto& sct_and_status : sct_and_status_list)
if (sct_and_status.status == match_status)
result.push_back(sct_and_status.sct);
return result;
}
} // namespace ct
} // namespace net