mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 14:26:09 +03:00
68 lines
2.0 KiB
C++
68 lines
2.0 KiB
C++
// Copyright (c) 2012 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/ssl/ssl_info.h"
|
|
|
|
#include "base/pickle.h"
|
|
#include "base/stl_util.h"
|
|
#include "net/cert/cert_status_flags.h"
|
|
#include "net/cert/ct_policy_status.h"
|
|
#include "net/cert/signed_certificate_timestamp.h"
|
|
#include "net/cert/x509_certificate.h"
|
|
#include "net/ssl/ssl_connection_status_flags.h"
|
|
#include "third_party/boringssl/src/include/openssl/ssl.h"
|
|
|
|
namespace net {
|
|
|
|
SSLInfo::SSLInfo() {
|
|
Reset();
|
|
}
|
|
|
|
SSLInfo::SSLInfo(const SSLInfo& info) {
|
|
*this = info;
|
|
}
|
|
|
|
SSLInfo::~SSLInfo() = default;
|
|
|
|
SSLInfo& SSLInfo::operator=(const SSLInfo& info) = default;
|
|
|
|
void SSLInfo::Reset() {
|
|
cert = NULL;
|
|
unverified_cert = NULL;
|
|
cert_status = 0;
|
|
security_bits = -1;
|
|
key_exchange_group = 0;
|
|
connection_status = 0;
|
|
is_issued_by_known_root = false;
|
|
pkp_bypassed = false;
|
|
client_cert_sent = false;
|
|
channel_id_sent = false;
|
|
token_binding_negotiated = false;
|
|
token_binding_key_param = TB_PARAM_ECDSAP256;
|
|
handshake_type = HANDSHAKE_UNKNOWN;
|
|
base::STLClearObject(&public_key_hashes);
|
|
base::STLClearObject(&pinning_failure_log);
|
|
base::STLClearObject(&signed_certificate_timestamps);
|
|
ct_policy_compliance =
|
|
ct::CTPolicyCompliance::CT_POLICY_COMPLIANCE_DETAILS_NOT_AVAILABLE;
|
|
ct_policy_compliance_required = false;
|
|
ocsp_result = OCSPVerifyResult();
|
|
}
|
|
|
|
void SSLInfo::SetCertError(int error) {
|
|
cert_status |= MapNetErrorToCertStatus(error);
|
|
}
|
|
|
|
void SSLInfo::UpdateCertificateTransparencyInfo(
|
|
const ct::CTVerifyResult& ct_verify_result) {
|
|
signed_certificate_timestamps.insert(signed_certificate_timestamps.end(),
|
|
ct_verify_result.scts.begin(),
|
|
ct_verify_result.scts.end());
|
|
|
|
ct_policy_compliance = ct_verify_result.policy_compliance;
|
|
ct_policy_compliance_required = ct_verify_result.policy_compliance_required;
|
|
}
|
|
|
|
} // namespace net
|