Re: Validating Cert Chain

2006-08-30 Thread Marek Marcola
Hello, > i have a question about this following method > > int X509_STORE_CTX_init(X509_STORE_CTX *ctx, X509_STORE *store, >X509 *x509, STACK_OF(X509) *chain); > > if i understand this correctly the argument 'x509' is the cert that u want > to be verified & the 'chain' is

Re: Validating Cert Chain

2006-08-29 Thread k b
from files containg pem certs ? -kb From: Marek Marcola <[EMAIL PROTECTED]> Reply-To: openssl-users@openssl.org To: openssl-users@openssl.org Subject: Re: Validating Cert Chain Date: Sat, 26 Aug 2006 01:22:19 +0200 Hello, > Hi, > How do i validate a certificate chain. is there a

Re: Validating Cert Chain

2006-08-25 Thread Richard Kao
You can also consider using function int ssl_verify_cert_chain(SSL *s,STACK_OF(X509) *sk), if a stack of certs is available. Rick From: Marek Marcola <[EMAIL PROTECTED]> Reply-To: openssl-users@openssl.org To: openssl-users@openssl.org Subject: Re: Validating Cert Chain Date: Sat,

Re: Validating Cert Chain

2006-08-25 Thread Marek Marcola
Hello, > Hi, > How do i validate a certificate chain. is there a EVP api for it ? > thanks If we are talking about verifying X509 cert against CA certs this may be done for example like: - FILE *fp; X509_STORE * CAcerts; X509 * cert; X509_STORE_CTX ca_ctx; char *strer

Validating Cert Chain

2006-08-25 Thread k b
Hi, How do i validate a certificate chain. is there a EVP api for it ? thanks Kunal From: Marek Marcola <[EMAIL PROTECTED]> Reply-To: openssl-users@openssl.org To: openssl-users@openssl.org Subject: Re: OpenSSL Generating Extra Packets Date: Fri, 25 Aug 2006 23:51:45 +0200 Hello, > I am workin