1// Copyright (c) 2011 The Chromium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#include "net/base/cert_verify_result.h"
6
7namespace net {
8
9CertVerifyResult::CertVerifyResult() {
10  Reset();
11}
12
13CertVerifyResult::~CertVerifyResult() {
14}
15
16void CertVerifyResult::Reset() {
17  cert_status = 0;
18  has_md5 = false;
19  has_md2 = false;
20  has_md4 = false;
21  has_md5_ca = false;
22  has_md2_ca = false;
23  is_issued_by_known_root = false;
24  public_key_hashes.clear();
25}
26
27} // namespace net
28