Re: Loading CRL to Client

2006-01-13 Thread Dr. Stephen Henson
On Fri, Jan 13, 2006, am0ykam0te (sent by Nabble.com) wrote: > > My App wont compile because the constants(flags) are not declared in my > version of OpenSSL . (0.9.6h) CRL checking is not support in OpenSSL 0.9.6 you need 0.9.7 at least. This should also be in openssl-users. Steve. -- Dr St

Re: Loading CRL to Client

2006-01-13 Thread am0ykam0te (sent by Nabble.com)
My App wont compile because the constants(flags) are not declared in my version of OpenSSL . (0.9.6h) View this message in context: Re: Loading CRL to Client Sent from the OpenSSL - Dev forum at Nabble.com.

Re: Loading CRL to Client

2006-01-13 Thread Rajeshwar Singh Jenwar
On 1/13/06, am0ykam0te (sent by Nabble.com) <[EMAIL PROTECTED]> wrote: my version of openssl does not have the constant flags you included.. (X509_V_FLAG_CRL_CHECK|X509_V_FLAG_CRL_CHECK_ALL).. View this message in context: Re: Loading CRL to ClientSent from the OpenSSL - Dev forum at Nabble.c

Re: Loading CRL to Client

2006-01-13 Thread am0ykam0te (sent by Nabble.com)
my version of openssl does not have the constant flags you included.. (X509_V_FLAG_CRL_CHECK|X509_V_FLAG_CRL_CHECK_ALL).. View this message in context: Re: Loading CRL to Client Sent from the OpenSSL - Dev forum at Nabble.com.

Re: Loading CRL to Client

2006-01-13 Thread Rajeshwar Singh Jenwar
Lookup = X509_STORE_add_lookup(pStore, X509_LOOKUP_file()); ret = X509_load_crl_file( pLookup, clientCRL,X509_FILETYPE_PEM); View this message in context: Re: Loading CRL to Client Sent from the OpenSSL - Dev forum at Nabble.com. Do  X509_STORE_CTX_set_flags (csc, X509_V_FLAG_CRL_CHECK); X509_STORE_CTX_set

Re: Loading CRL to Client

2006-01-13 Thread am0ykam0te (sent by Nabble.com)
( pLookup, clientCRL,X509_FILETYPE_PEM); View this message in context: Re: Loading CRL to Client Sent from the OpenSSL - Dev forum at Nabble.com.

Re: Loading CRL to Client

2006-01-12 Thread Rajeshwar Singh Jenwar
On 1/13/06, am0ykam0te (sent by Nabble.com) <[EMAIL PROTECTED]> wrote: Can any body tell me API's on loading crl's on a client. View this message in context: Loading CRL to ClientSent from the OpenSSL - Dev forum at Nabble.com. int X509_STORE_add_crl(X509_STORE *ctx, X509_CRL *x)

Loading CRL to Client

2006-01-12 Thread am0ykam0te (sent by Nabble.com)
Can any body tell me API's on loading crl's on a client. View this message in context: Loading CRL to Client Sent from the OpenSSL - Dev forum at Nabble.com.