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
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
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
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