Re: Reloading the CRL

2004-09-13 Thread Ralf Haferkamp
On Thursday 09 September 2004 18:00, Dr. Stephen Henson wrote: > On Thu, Sep 09, 2004, Ralf Haferkamp wrote: > > Hi, > > > > I am currently trying to implement CRL checking inside a server. I am now > > facing the problem, that I would like to trigger a reload of the CRL from > > disc if it has bee

Re: Reloading the CRL

2004-09-09 Thread Austin Krauss
My app does not have the ability of removing CRLs at runtime, although it can add new ones. When I've determined that the CRL database needs refreshed for OpenSSL, I just call X509_STORE_add_crl(cert_store, crl) for all CRLs (regardless of whether or not they're already added to the X509_STORE) and

Re: Reloading the CRL

2004-09-09 Thread Dr. Stephen Henson
On Thu, Sep 09, 2004, Ralf Haferkamp wrote: > Hi, > > I am currently trying to implement CRL checking inside a server. I am now > facing the problem, that I would like to trigger a reload of the CRL from > disc if it has been updated, without restarting the server application. How > can that b

Re: Reloading the CRL

2004-09-09 Thread Joseph Bruni
The way I did it was to delete my SSL_CTX and build a new one. On Sep 9, 2004, at 7:38 AM, Ralf Haferkamp wrote: Hi, I am currently trying to implement CRL checking inside a server. I am now facing the problem, that I would like to trigger a reload of the CRL from disc if it has been updated, wit