Re: Self-Signed Certificate - Windows Vista

2007-03-26 Thread Ted Mittelstaedt
Self-Signed Certificate - Windows VistaI think what your trying to do is create your own CA, import a certificate from it into your vista system, then create a server cert and sign it with the CA. At least I think that is what your trying to do. But it looks like a mixture of commands to do th

RE: sample code to encrypt file using tripleDes/aes/blowfish

2007-03-26 Thread Bill Colvin
Why not look in the test directory of the OpenSSL source? There are lots of examples there. Bill From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of imin macho Sent: March 26, 2007 11:51 PM To: openssl-users@openssl.org Subject: sample code to e

sample code to encrypt file using tripleDes/aes/blowfish

2007-03-26 Thread imin macho
hi i know this may sound too much, but i'm not really good in using openssl (really new to this), and i've been asked to do simple text file encryption/decryption using openssl library. anyone can direct to me a sample source code, using either tripleDes or Aes or blowfish to encrypt and decrypt

Re: SSLv3 Server and SSLv23 client communication fails.

2007-03-26 Thread Marek Marcola
Hello, > >I am trying a simple SSL server-client code. > >I have started server in SSLv3 mode and client in SSLv23 mode. > >While at the time of SSL_accept, I am getting the following error. > >22448:error:1408F10B:SSL routines:SSL3_GET_RECORD:wrong version > number:s3_pkt.c:29

SSLv3 Server and SSLv23 client communication fails.

2007-03-26 Thread durgaprasad jammula
Hi All, I am trying a simple SSL server-client code. I have started server in SSLv3 mode and client in SSLv23 mode. While at the time of SSL_accept, I am getting the following error. 22448:error:1408F10B:SSL routines:SSL3_GET_RECORD:wrong version number:s3_pkt.c:299 If I start

Re: getting remote host ip

2007-03-26 Thread Marek Marcola
Hello, > Good day, How do I get the remote IP using the BIO functions. I used to get > it from the accept in the sock_addr field. BIO_get_fd() getpeername() Best regards, -- Marek Marcola <[EMAIL PROTECTED]> __ OpenSSL Project

getting remote host ip

2007-03-26 Thread expresserv
Good day, How do I get the remote IP using the BIO functions. I used to get it from the accept in the sock_addr field. Steve __ OpenSSL Project http://www.openssl.org User Support Mailing List

Getting remote host ip

2007-03-26 Thread expresserv
good day, __ OpenSSL Project http://www.openssl.org User Support Mailing Listopenssl-users@openssl.org Automated List Manager [EMAIL PROTECTED]

RE: Process getting locked on Win32

2007-03-26 Thread Mark
Hi, > > >> I have the following trivial program copied at the end. > > >> > > >> I compile it as cl /MTd /Zi /EHsc a.cpp /link /DEBUG > > >> > > > > > >Try it with /MD instead of /MTd. > > > > > > I fail to see how this will help. > > OpenSSL by default is compiled with /MD if you don't change

EVP_Sign* and openssl dgst -sha1 -sign

2007-03-26 Thread Tõnis Märtmaa
Hello I have to sign a string using RSA and SHA1 and I wanted to use the openssl command line utility to do that( can't use the C library since our code is in C#). I also have a C program( not written by me ), that can be used to test if the signature is correct and that it will be accepted b

RE: Process getting locked on Win32

2007-03-26 Thread Simon Edwards
The biggest problem with mixing /MD and /MTd being that you are using two different C run-time libraries within the same application, although both are multi-threaded capable. The two memory heaps are different, and so are the handle sequences for some types of handle allocations. You may even ge

Re: Process getting locked on Win32

2007-03-26 Thread Dr. Stephen Henson
On Mon, Mar 26, 2007, Rocky S wrote: > On 3/23/07, Dr. Stephen Henson <[EMAIL PROTECTED]> wrote: > >On Fri, Mar 23, 2007, Rocky S wrote: > > > >> Hi, > >> I have downloaded & built openssl-0.9.8e.tar.gz on WinXP using > >> VCExpress 2005. Everything builds fine but when I compile & run a > >> pr

Re: Process getting locked on Win32

2007-03-26 Thread Rocky S
On 3/23/07, Dr. Stephen Henson <[EMAIL PROTECTED]> wrote: On Fri, Mar 23, 2007, Rocky S wrote: > Hi, > I have downloaded & built openssl-0.9.8e.tar.gz on WinXP using > VCExpress 2005. Everything builds fine but when I compile & run a > program using the library, it remains locked even after it