Re: your mail

2003-11-14 Thread rocco . ciriello
I don't sign file in openssl (I sign in windows machine with CAPICOM), I use it only to verify on linux machine. I searched a openssl command that return the number of signers. If it don't exist, I will extract whit smime a file of all certificates and after I parse it to counter a signers. thank

Re: Win 2000 Smartcard Logon - need help...

2003-11-14 Thread Dr. Stephen Henson
On Fri, Nov 14, 2003, Tobi Anton wrote: > Hi, > > well I don't want to use Microsofts CA (!), we run our own based on > OpenSSL. MS says that they don't give support, but Dr. Stephen Henson > posted a few weeks ago, that he got it to work to logon by smartcard to > w2k with a certificate gener

How to add information in certificate

2003-11-14 Thread Frederic FORJAN
Hi everybody, I'm a newbie in openSSL, i have one question : I want to add information in the certificate, i use unstructuredName in configuration but only one information of this type is ask to the user when he create a new certificate, and i add two lines with unstructuredName in configuration f

Re: Win 2000 Smartcard Logon - need help...

2003-11-14 Thread Tobi Anton
Hi, well I don't want to use Microsofts CA (!), we run our own based on OpenSSL. MS says that they don't give support, but Dr. Stephen Henson posted a few weeks ago, that he got it to work to logon by smartcard to w2k with a certificate generated by 0.9.8-dev... @Stephen Henson: what requireme

Re: RE : SSL_accept error

2003-11-14 Thread Jason Jesso
OK. I found it. I had the listening socket as the socket to SSL_set_fd. That's wrong. I meant to pass the accepted socket. Thanks Jason Jesso wrote: In a nutshell, this is what I have in a "ServerSocket" C++ class. sslContext = SSL_CTX_new( SSLv23_server_method() ); if

Re: your mail

2003-11-14 Thread Dr. Stephen Henson
On Fri, Nov 14, 2003, [EMAIL PROTECTED] wrote: > somebody know if openssl manage the "parallel multiple signature" or "the > cosign". > thanks > For what exactly? It can be done in S/MIME but the low level API is needed to parallel signature generation. The S/MIME verify code should automatical

Re: RE : SSL_accept error

2003-11-14 Thread Jason Jesso
In a nutshell, this is what I have in a "ServerSocket" C++ class. sslContext = SSL_CTX_new( SSLv23_server_method() ); if ( sslContext == NULL ){ if ( sslErrorLog ) ERR_print_errors_fp( sslErrorLog ); BUG0( throwing JJSocketException - 4 )

RE: Win 2000 Smartcard Logon - need help...

2003-11-14 Thread Hendriks Bas
Tobi, I used w2k certifcates from w2k certificate service and that worked fine. Microsoft stated that non w2k certificates are not supported e.g. verisign (i wanted these but didn't work default) Only when you add different vendor software it will work. met vriendelijke groet, with kind regards

[no subject]

2003-11-14 Thread rocco . ciriello
somebody know if openssl manage the "parallel multiple signature" or "the cosign". thanks __ OpenSSL Project http://www.openssl.org User Support Mailing List[EMAIL PROTECTED] A

REĀ : SSL_accept error

2003-11-14 Thread Francis.Vanhemmens
Did you do something like : SSL_METHOD *meth = NULL; .// do some inits, maybe even mutlithread support . // load error strings, load algorithms . meth = SSLv3_server_method(); // operational implementation of accept is in there. if (SSL_CTX_new(meth)) if you are both server and