diff options
author | lloyd <[email protected]> | 2008-04-29 17:02:00 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2008-04-29 17:02:00 +0000 |
commit | 0adb72d5264bcf3b84cf4d7385b6c8922d824a1e (patch) | |
tree | 3acacb3388b16db8ffbad0708a3e73b71228e5c3 /include | |
parent | 271c16e52014d20e347167c1d43ddeae0707c19b (diff) |
Instead of reading from the Config object every time to get the slack we
should allow when checking timestamps, just call it once and store the
value in the X509_Store object, passing it to validity_check with a new
argument for the allowed time slack.
Diffstat (limited to 'include')
-rw-r--r-- | include/x509stor.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/x509stor.h b/include/x509stor.h index d033e3daf..2010d7e7c 100644 --- a/include/x509stor.h +++ b/include/x509stor.h @@ -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; mutable bool revoked_info_valid; }; |