ct_policy_enforcer.cc 518 B

123456789101112131415161718
  1. // Copyright 2014 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. #include "net/cert/ct_policy_enforcer.h"
  5. #include "net/cert/ct_policy_status.h"
  6. namespace net {
  7. ct::CTPolicyCompliance DefaultCTPolicyEnforcer::CheckCompliance(
  8. X509Certificate* cert,
  9. const ct::SCTList& verified_scts,
  10. const NetLogWithSource& net_log) {
  11. return ct::CTPolicyCompliance::CT_POLICY_BUILD_NOT_TIMELY;
  12. }
  13. } // namespace net