// Copyright 2019 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "revocation_util.h" #include "encode_values.h" #include "parse_values.h" BSSL_NAMESPACE_BEGIN namespace { constexpr int64_t kMinValidTime = …; // 0000-01-01 00:00:00 UTC constexpr int64_t kMaxValidTime = …; // 9999-12-31 23:59:59 UTC } // namespace bool CheckRevocationDateValid(const der::GeneralizedTime &this_update, const der::GeneralizedTime *next_update, int64_t verify_time_epoch_seconds, std::optional<int64_t> max_age_seconds) { … } BSSL_NAMESPACE_END