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

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

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

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

FW: 0.9.8c(and d) build failure

2006-10-30 Thread james.owen
C:\src\openssl-0.9.8cnmake -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

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

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