openssl, imaps and atalla axl600l problem?

2005-02-14 Thread Aydın Sasmaz
Hi everyone Id like to know if there is a way to determine or examine the openssl engine statistics created upon imaps ve pop3s requests. Actually want to know whether our SSL accaelerator card (ATALLA -- AXL600L) is in use by means of openssl builtin engine. Here are the

the SSL struct

2005-02-14 Thread Mark
Hi I'm pretty new to openssl. I have some code that gets the certificate subject from the X509_STORE_CTX as follows: int my_func(int ok, X509_STORE_CTX *ctx) { char subject[256]; X509 *client_cert; client_cert = X509_STORE_CTX_get_current_cert(ctx);

the SSL struct

2005-02-14 Thread Mark
Hi I'm pretty new to openssl. I have some code that gets the certificate subject from the X509_STORE_CTX as follows: int my_func(int ok, X509_STORE_CTX *ctx) { char subject[256]; X509 *client_cert; client_cert = X509_STORE_CTX_get_current_cert(ctx);

Compiling under Linux

2005-02-14 Thread Jon Earle
Hello, Trying to build 0.9.7f-dev under linux using shared libs. I've run the configure process as follows: ./config \ --openssldir=/usr/tools/openssl \ no-threads \ no-zlib \ no-krb5 \ no-rc5 \ no-idea \ shared Followed by 'make depend;make;make install'. This works to create shared libs

Re: Compiling under Linux

2005-02-14 Thread Richard Levitte - VMS Whacker
In message [EMAIL PROTECTED] on Mon, 14 Feb 2005 11:30:51 -0500 (EST), Jon Earle [EMAIL PROTECTED] said: je_osu What I want to do is hard-code the runtime link path into the je_osu libraries/executables, in a fashion similar to that employed je_osu by HP-UX (which, I believe, just does it).

confirming my approach

2005-02-14 Thread Medi Montaseri
I have been working on a problem for a couple of weeks and I'm begining to doubt myself... I can use some confirmation... I 'm trying to port a working application (Working on FreeBSD 5.2.1 32-bit) to a FreeBSD 5.3 amd64 and am experiencing seg fualt when calling SSL_library_init(). So I got

Re: the SSL struct

2005-02-14 Thread Nils Larsch
Mark wrote: Hi I'm pretty new to openssl. I have some code that gets the certificate subject from the X509_STORE_CTX as follows: int my_func(int ok, X509_STORE_CTX *ctx) { char subject[256]; X509 *client_cert; client_cert = X509_STORE_CTX_get_current_cert(ctx);

Re: confirming my approach

2005-02-14 Thread Medi Montaseri
Medi Montaseri wrote: I have been working on a problem for a couple of weeks and I'm begining to doubt myself... I can use some confirmation... I 'm trying to port a working application (Working on FreeBSD 5.2.1 32-bit) to a FreeBSD 5.3 amd64 and am experiencing seg fualt when calling

Re: Compiling under Linux

2005-02-14 Thread je_osu
On Mon, 14 Feb 2005, Richard Levitte - VMS Whacker wrote: In message [EMAIL PROTECTED] on Mon, 14 Feb 2005 11:30:51 -0500 (EST), Jon Earle [EMAIL PROTECTED] said: je_osu What I want to do is hard-code the runtime link path into the je_osu libraries/executables, in a fashion similar to that

MD5 assembly code ported for Microsoft ML64 for AMD64, new version

2005-02-14 Thread Gilles Vollant
I discovered that Marc Bevand already made work about MD5 for AMD64. http://etudiant.epita.fr/~bevand_m/papers/md5-amd64.html starting with his work, I made a version for Microsoft ML64 faster (a little) than previous. see http://www.winimage.com/md5-amd64-ms.htm

s_client error while connecting

2005-02-14 Thread Riaz Rahaman
Hi, I am trying to connect to connect using the s_client, it works fine for a couple of hours and after that I keep getting this error message. Can anyone please tell me what is SSL alert number 20 = $ openssl s_client -ssl3 -connect

Problem in Client authentication

2005-02-14 Thread Manu Narang
Hi, I am creating a webservice in C++ using gSOAP 2.6.2 with OpenSSL-v0.9.7e. Client authentication is enabled. The first request works and command executes successfully, but the second request(and subsequent) fails with the following errors Client side SOAP FAULT: SOAP-ENV:Client

fips_standalone_sha1 error

2005-02-14 Thread vijay basav
hi i have configured openssl-0.9.7e for vxworks-mipsle. when i do make i get the error collect2: vfork :No more processes make[2]: *** [fips-standalone_sha1] Error 1 make[2]: leaving directory openssl-0.9.7e/fips/sha1 could somebody please help me regards vijay Do you Yahoo!? Yahoo! Search

Re: fips_standalone_sha1 error

2005-02-14 Thread Richard Levitte - VMS Whacker
In message [EMAIL PROTECTED] on Mon, 14 Feb 2005 23:11:38 -0800 (PST), vijay basav [EMAIL PROTECTED] said: vijay_basav i have configured openssl-0.9.7e for vxworks-mipsle. when vijay_basav i do make i get the error vijay_basav vijay_basav collect2: vfork :No more processes vijay_basav

use os BIOs

2005-02-14 Thread javaguest
I'm trying to implement an eap-tls server using openssl and I've found only few examples about using memory BIOs to perform a TLS handshake. Can you give me some pointer to documentation about this or to some examples? The code that I'm using is very simple: openssl initialization ...