The unified diff between revisions [13704fef..] and [b773b0a7..] is displayed below. It can also be downloaded as a raw diff.

This diff has been restricted to the following files: 'include/x509stor.h'

#
#
# patch "include/x509stor.h"
#  from [855228fef66cacc885703077bfb15f583bf75e7b]
#    to [dfbc4f59139cbee076e370b6370e71995f3c4479]
#
============================================================
--- include/x509stor.h	855228fef66cacc885703077bfb15f583bf75e7b
+++ include/x509stor.h	dfbc4f59139cbee076e370b6370e71995f3c4479
@@ -87,7 +87,7 @@ class BOTAN_DLL X509_Store
       class BOTAN_DLL Cert_Info
          {
          public:
-            bool is_verified() const;
+            bool is_verified(u32bit timeout) const;
             bool is_trusted() const;
             X509_Code verify_result() const;
             void set_result(X509_Code) const;
@@ -126,7 +126,7 @@ class BOTAN_DLL X509_Store
       std::vector<Cert_Info> certs;
       std::vector<CRL_Data> revoked;
       std::vector<Certificate_Store*> stores;
-      u32bit time_slack;
+      u32bit time_slack, validation_cache_timeout;
       mutable bool revoked_info_valid;
    };