diff options
-rw-r--r-- | src/cert/x509store/x509stor.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cert/x509store/x509stor.h b/src/cert/x509store/x509stor.h index 7c3895635..c5445f808 100644 --- a/src/cert/x509store/x509stor.h +++ b/src/cert/x509store/x509stor.h @@ -81,8 +81,6 @@ class BOTAN_DLL X509_Store void add_new_certstore(Certificate_Store*); - static X509_Code check_sig(const X509_Object&, Public_Key*); - X509_Store(u32bit time_slack = 24*60*60, u32bit cache_results = 30*60); @@ -118,6 +116,8 @@ class BOTAN_DLL X509_Store mutable u64bit last_checked; }; + static X509_Code check_sig(const X509_Object&, Public_Key*); + u32bit find_cert(const X509_DN&, const MemoryRegion<byte>&) const; X509_Code check_sig(const Cert_Info&, const Cert_Info&) const; void recompute_revoked_info() const; |