summaryrefslogtreecommitdiff
path: root/chromium/net/cert/pki/revocation_util.h
blob: 1cd5ce81e8bf94d72e11d6175d8ff275cc182c91 (plain)
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
// 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.

#ifndef NET_CERT_PKI_REVOCATION_UTIL_H_
#define NET_CERT_PKI_REVOCATION_UTIL_H_

#include "net/base/net_export.h"

namespace base {
class Time;
class TimeDelta;
}  // namespace base

namespace net {

namespace der {
struct GeneralizedTime;
}

// Returns true if a revocation status with |this_update| field and potentially
// a |next_update| field, is valid at |verify_time| and not older than
// |max_age|.  Expressed differently, returns true if |this_update <=
// verify_time < next_update|, and |this_update >= verify_time - max_age|.
[[nodiscard]] NET_EXPORT_PRIVATE bool CheckRevocationDateValid(
    const der::GeneralizedTime& this_update,
    const der::GeneralizedTime* next_update,
    const base::Time& verify_time,
    const base::TimeDelta& max_age);

}  // namespace net

#endif  // NET_CERT_PKI_REVOCATION_UTIL_H_