The unified diff between revisions [5a1d14c4..] 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 [2242323b5c90c22ea1c5a9c6a88bee139231ef88]
#    to [dfbc4f59139cbee076e370b6370e71995f3c4479]
#
============================================================
--- include/x509stor.h	2242323b5c90c22ea1c5a9c6a88bee139231ef88
+++ 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,6 +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, validation_cache_timeout;
       mutable bool revoked_info_valid;
    };