Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(154)

Unified Diff: net/cert/internal/parse_ocsp.h

Issue 2144693002: Reland of Add CheckOCSPDateValid() to net/cert/internal (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add documentation, abort early. Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | net/cert/internal/parse_ocsp.cc » ('j') | net/cert/internal/parse_ocsp_unittest.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/cert/internal/parse_ocsp.h
diff --git a/net/cert/internal/parse_ocsp.h b/net/cert/internal/parse_ocsp.h
index b9052aee9f6df9c4e4797a928b5c7024a917ba4e..af5541d8785b565ce9f9da3c2ffb4097bda1830d 100644
--- a/net/cert/internal/parse_ocsp.h
+++ b/net/cert/internal/parse_ocsp.h
@@ -17,6 +17,10 @@
#include "net/der/parser.h"
#include "net/der/tag.h"
+namespace base {
+class Time;
Lei Zhang 2016/07/14 10:39:50 Luckily, TimeDelta is declared somewhere.
dadrian 2016/07/14 17:37:29 Done.
+}
+
namespace net {
// OCSPCertID contains a representation of a DER-encoded RFC 6960 "CertID".
@@ -278,6 +282,15 @@ NET_EXPORT_PRIVATE bool GetOCSPCertStatus(
const der::Input& cert_tbs_certificate_tlv,
OCSPCertStatus* out);
+// Returns true if |response|, a valid OCSP response with a thisUpdate field and
+// potentially a nextUpdate field, is valid at |verify_time| and not older than
+// |max_age|. Expressed differently, returns true if |response.thisUpdate| <=
+// |verify_time| < response.nextUpdate, and |response.thisUpdate| >=
+// |verify_time| - |max_age|.
+NET_EXPORT_PRIVATE bool CheckOCSPDateValid(const OCSPSingleResponse& response,
+ const base::Time& verify_time,
+ const base::TimeDelta& max_age);
+
} // namespace net
#endif // NET_CERT_INTERNAL_PARSE_OCSP_H_
« no previous file with comments | « no previous file | net/cert/internal/parse_ocsp.cc » ('j') | net/cert/internal/parse_ocsp_unittest.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698