RE: Multithreading problem

2006-10-30 Thread David Schwartz
> <--- PSEUDO CODE > > > bool WaitOnWrite = false; > int res; > > // it associates FD_WRITE event with SockEvent object > > WSAEventSelect(sock,SockEvent,FD_WRITE); > > for (;;) > { > > if (WaitOnWrite) > WaitForMultipleObjects(SockEvent) > else > WaitFo

Question for you all

2006-10-30 Thread Peter Kringle
Just joined up with the list. I have been searching both google and this list archives and have not found the answers I am looking for. What I need to do is co-sign a DOCSIS firmware with our company CVC code. My first question, has anyone done this, and can they either point me in the righ

RE: 0.9.8c(and d) build failure

2006-10-30 Thread james.owen
Sorry. brain-fart... I missed: perl Configure VC-WIN32 Thanks, --- James Owenflr 1 - 1501 Bank St. Messaging ArchitectureOttawa, Ont. K1H 7Z1 Technology Developmentwork: 613.781.3363 Bell Canada

Re: AW: SHA2

2006-10-30 Thread Nils Larsch
[EMAIL PROTECTED] wrote: Is there already a stable version of OpenSSL in the field that supports SHA256? yep, 0.9.8 Cheers, Nils __ OpenSSL Project http://www.openssl.org User Support Mailing Li

FW: 0.9.8c(and d) build failure

2006-10-30 Thread james.owen
C:\src\openssl-0.9.8c>nmake -f ms\ntdll.mak Microsoft (R) Program Maintenance Utility Version 6.00.9782.0 Copyright (C) Microsoft Corp 1988-1998. All rights reserved. Building OpenSSL cl /Fotmp32dll\ec_asn1.obj -Iinc32 -Itmp32dll /MD /Ox /O2 /Ob2 /W3 /WX /Gs0 /GF /Gy /nologo -DOPENSSL

Re: Multithreading problem

2006-10-30 Thread kalikali
> > If OpenSSL is unable to perform an operation, that means it tried it and > couldn't do it. If that operation was a write, then when it becomes possible, > you will get a write event. If that operation wasn't a write, then who cares > when a write becomes possible? > Maybe I show it using

Non-blocking Soccket openssl connection fail

2006-10-30 Thread Dinh, Thao V CIV B32-Branch
Title: Non-blocking Soccket openssl connection fail Please help. I am writing Client-Server program. My server is listened blocking socket, waiting for client to connect. First,  my client is blocking socket. Everything looks good. Client is happy with Server's certificate. All communicati

Re: SSL Client authendication

2006-10-30 Thread Bernhard Froehlich
Eshwaramoorthy Babu wrote: Hi, We have a JAVA SSL client talking to HTTP Server. The server side ssl is working fine. Now we are planning to use client authendication(server authendicating client). I spoke to the certificate provider (comtrust) regerding this. He suggested me to purchace a

Re: man pages of PKCS12

2006-10-30 Thread Alexis Lefort
I have now several other questions: - does PKCS#12 files always have the ".p12" extension in their filename? - If no, how can I know (programatically) if they are in X.509 or PKCS#12 format? - When using d2i_PKCS12_fp(FILE *fp, PKCS12 **p12), how can I free the p12 object? thanks again for you

SSL Client authendication

2006-10-30 Thread Eshwaramoorthy Babu
Hi, We have a JAVA SSL client talking to HTTP Server. The server side ssl is working fine. Now we are planning to use client authendication(server authendicating client). I spoke to the certificate provider (comtrust) regerding this. He suggested me to purchace a user certificate.They also said for

AW: SHA2

2006-10-30 Thread thomas.beckmann
Is there already a stable version of OpenSSL in the field that supports SHA256? Best regards Thomas > -Ursprüngliche Nachricht- > Von: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] Im Auftrag von Nils Larsch > Gesendet: Donnerstag, 12. Mai 2005 09:33 > An: openssl-users@openssl.org > B

Re: man pages of PKCS12

2006-10-30 Thread Alexis Lefort
I want to do it progammatically, thanks a lot for help :) regards Alexis Brad Hards a écrit : On Saturday 28 October 2006 01:58, Alexis Lefort wrote: I can't find much information about parsing a PKSC12 file, or testing the content of a file to know if it is PEM or PKCS12.