Re: RE: openssl clients for windows

2007-06-04 Thread Victor B. Wagner
On 2007.06.01 at 07:35:37 -0700, gary clark wrote: Hey Simon, I pushed the MSVCR71.dll into windows system32 directory. I am building the application with code Generation /MD. I then ran the client application If you use /MD you might need debug version of dll. MSVCR71D.DLL. And this is if

problem in certificate revocation

2007-06-04 Thread piyush tewari
Hello, I want to revoke my certificate by specifying CRLfile in the stunnel.conf. the commands that i m using are:- 1. for generating the CRL file openssl ca -gencrl -keyfile ca_key -cert ca_crt -out my_crl.pem 2. for revoking the certificates openssl ca -revoke bad_crt_file -keyfile

Re: problem in certificate revocation

2007-06-04 Thread piyush tewari
Hello everybody, please help me in solving this issue. thanks in advance. warm regards piyush piyush tewari [EMAIL PROTECTED] wrote: Hello, I want to revoke my certificate by specifying CRLfile in the stunnel.conf. the commands that i m using are:- 1. for generating

Re: RE: openssl clients for windows

2007-06-04 Thread gary clark
Ok finally got it to run in standalone. Using an XP machine that does not have VC2005 installed best is the: \Program Files\Microsoft Visual Studio 8\SDK\v2.0\Bootstrapper\Packages\vcredist_x86\vcredist_x86.exe and run that for 2000 machines you will need the Windows Installer 3.0. --- Victor

Re: Netware CLIB libraries

2007-06-04 Thread Joe Flowers
Zack, This is what I got back from a different friend: http://www.novell.com/documentation/oes/nlm_list/index.html?page=/documentation/oes/nlm_list/data/ai39ik3.html Search for NTLS.NLM. Novell TLS Library * SSL stack based on OpenSSL. * If unloaded, there is no SSL

Re: Steps to port operssl to VxWorks?

2007-06-04 Thread Allen Chen
Raphael Ackermann 写道: VxWorks comes with its own version of OpenSSL at least for the targets used by the project I am working on. There is documentation as to how to port applications using OpenSSL from OpenSSL to the VxWorks SSL. Raphael Ackermann On 6/3/07, Allen Chen [EMAIL PROTECTED]

programmatically creating a v3 CA certificate

2007-06-04 Thread Chaz.
I need to be able to create a v3 CA certificate via programming. I don't have the ability to fork a shell and invoke openssl to do the work. I was wondering if any one has a small program that will create the needed certificate. The problem that I am having is that I don't see a way to create the

CRYPTO_set_id_callback(non-long)

2007-06-04 Thread Hallvard B Furuseth
CRYPTO_set_id_callback() needs thread IDs to be integers that fit in unsigned long, and is not supported otherwise. What is this integer used for? Does it really need to be the thread ID, or just some integer which is unique for the thread? In the latter case the application can maintain a

Re: programmatically creating a v3 CA certificate

2007-06-04 Thread Dr. Stephen Henson
On Mon, Jun 04, 2007, Chaz. wrote: I need to be able to create a v3 CA certificate via programming. I don't have the ability to fork a shell and invoke openssl to do the work. I was wondering if any one has a small program that will create the needed certificate. The problem that I am

Re: programmatically creating a v3 CA certificate

2007-06-04 Thread Chaz.
Stephen, Thanks. I saw it about 30 minutes ago and figured it out. The problem I was having was that creating extensions required very strict use of names and values! Once I got that it was a breeze. Once again thanks for the heads up and a very nice package! Chuck Wegrzyn Dr. Stephen Henson

Re: SSL_accept gives error

2007-06-04 Thread Marek Marcola
Hello, I have a SSL server that uses Openssl 9.7e. It works fine initially but few hundred connections, lots of SSL hanshake failure occurs. The failure reason given is SSL_ERROR_SYSCALL. After that I try to retrieve the more error details from the stack using ERR_error_string_n or

certificate generation concurrently

2007-06-04 Thread A kataoka
Hi, Does using openssl we can generate multiple certificate concurrently. I was experimenting on one of my application which require around 50 certificates to be generated in 1 sec. Please let me know does open ssl handles the multiple certificate requests simultaneously. Regards, A Kataoka

question on the latest version of openssl

2007-06-04 Thread nagaraj
I plan on upgrading openssl library at my work from openssl-0.9.7d.tar.gz http://www.openssl.org/source/openssl-0.9.7d.tar.gz to either openssl-0.9.8e.tar.gz or http://www.openssl.org/source/openssl-0.9.8e.tar.gzopenssl-fips-1.1.1.tar.gz. http://www.openssl.org/source/openssl-fips-1.1.1.tar.gz

Re: certificate generation concurrently

2007-06-04 Thread Kyle Hamilton
OpenSSL's command-line tool does not. The underlying library can handle it, though, if you write your own certificate-generation routine. -Kyle H Hi, Does using openssl we can generate multiple certificate concurrently. I was experimenting on one of my application which require around