difference between openssl and ssh rsa-public-keys

2004-07-28 Thread Gerd Schering
Hello, I generated an rsa key with ssh-keygen: -BEGIN RSA PRIVATE KEY- MIICWwIBAAKBgQC/mID2ohE8oahTW2/v0uXOKe/98Lxywo8p0D56prYHlMIUoTMk ouoY+DfbF65a1gNQaLCp2izqSPQZvHk9RqESpGkTdf8voe9uONz902xZ9f5fJVgi 2ASQvKpEzlZOWVuPPXWqTe1eqQLQ39wAaX/TqA6hraEdYAWxZUUn3iTv1wIBIwKB gAryxYpvqTaqJuAxHFbY2e6GD

i find it .

2004-07-28 Thread El hallabi-Kettani Abderrahmane
Im sorry it's in the x509 directory :) . Vous manquez d’espace pour stocker vos mails ? Yahoo! Mail vous offre GRATUITEMENT 100 Mo ! Créez votre Yahoo! Mail sur http://fr.benefits.yahoo.com/ Le nouveau Yahoo! Messenger est arrivé ! Découvrez toutes les nouvea

Re: difference between openssl and ssh rsa-public-keys

2004-07-28 Thread Richard Levitte - VMS Whacker
In message <[EMAIL PROTECTED]> on Wed, 28 Jul 2004 11:34:08 +0200, Gerd Schering <[EMAIL PROTECTED]> said: Schering> Then I extracted the public key, Schering> 1. with openssl: Schering> Schering> -BEGIN PUBLIC KEY- Schering> MIGdMA0GCSqGSIb3DQEBAQUAA4GLADCBhwKBgQC/mID2ohE8oahTW2/v0uXOKe

Re: how to add 'startdate' parameter in conf file ?

2004-07-28 Thread Dr. Stephen Henson
On Mon, Jul 26, 2004, Jaleel P.A wrote: > > > Hi > > > I tried by adding the UTC formatted time at 'default_startdate' of > 'CA_default' section. > > Ex : > > [CA_default] > default_startdate = "040801102530Z" > > But still SSL takes the current date. > What do you want the start date t

Re: Linking Error.

2004-07-28 Thread Layla
Thanks for the response Vio, Actually I'm not familiar with the method you've proposed. but I tried to compile the program from command line and It failed! I can't understand why its compiling by using GUI but not from the command prompt. I'm so new to this and this project is really very important

Re: Linking Error.

2004-07-28 Thread Vio
I think VC++ has a command-line tool (something like cmake, or something). If VC++ fails, maybe try DevC++. VC++/DevC++ docs are your friend :) Vio Layla wrote: Thanks for the response Vio, Actually I'm not familiar with the method you've proposed. but I tried to compile the program from comman

Re: Linking Error.

2004-07-28 Thread Weijie Zhang
You need to make sure that you are linking to the (or, maybe, the proper) libaray. Type "set" in your dos prompt and check the corresponding path which define where linker goes to find your lib etc. I believe the VC++ can show you somewhere of the enviornment set. You can get clues by examin

Re: Linking Error.

2004-07-28 Thread Layla
I'm not saying VC++ is failing, I'm just saying there has got to be something wrong that I'm doing which I'm hoping that someone can point out. after following the steps in the INSTALL.win32 file I ran the test as instructed and it worked fine without generating any error message, doesn't that mea

RE: Linking Error.

2004-07-28 Thread jain, anuj
Title: Message Layla, To link in the ssl libraries using VC++ IDE do the following: "Project->Settings->Link tab->Object/library modules:" in the end of the list of libs add the two OpenSSL libraries "libeay32.lib ssleay32.lib". I hope this helps. --Anuj -Original Message-From

Re: Linking Error.

2004-07-28 Thread Layla
Weijie, Thank you for replying, does it make any difference if I compile from the command line or GUI? cause as I've mentioned, when I compile from Visual studio I get no error messages which indicates that it can "see" my include files, but when I tried running the compiler from the command line I

RE: Linking Error.

2004-07-28 Thread Layla
Anuj: Thank  you SO much! :) that certainly solved the linking problem using the graphical user interface of MS visual studio, but would you know why isn't it compiling or linking from the command line? is there something that I must run first? and does it really make any difference whether I compi

RE: Linking Error.

2004-07-28 Thread Kevin Eppinger
Layla, I haven’t used VC++ in a while…and have never used it from the cmd line…but I would try something from the makefile suggestion below.  Again, I’m not familiar with VC++, but will this work:   cl –I/path/to/openssl/headerfiles clientf.cpp   ??   -kevin   From: owne

RE: Linking Error.

2004-07-28 Thread jain, anuj
Title: Message You are welcome, For compiling your code using cl.exe you need to provide more 'compiler and linker" options on the command line like the include directories libraries and the defines etc. A "cl -help" will provide you all possible options. For further reading please refer t

Re: problem signing CSR

2004-07-28 Thread Laurent Mesuré
Dr. Stephen Henson wrote: You should probably try the latest 0.9.7-stable snapshot. I've already done that I'm using openssl-0.9.7d on a Mandrake Linux box Laurent __ OpenSSL Project http://w

Re: Linking Error.

2004-07-28 Thread Ken Goldman
> Thank you SO much! :) that certainly solved the linking problem > using the graphical user interface of MS visual studio, but would > you know why isn't it compiling or linking from the command line? is > there something that I must run first? and does it really make any > difference whether I co

Re: Linking Error.

2004-07-28 Thread Vio
Layla wrote: Weijie, Thank you for replying, does it make any difference if I compile from the command line or GUI? cause as I've mentioned, when I compile from Visual studio I get no error messages which indicates that it can "see" my include files, but when I tried running the compiler from th

RE: Linking Error.

2004-07-28 Thread Layla
Anuj,   Thank you again."jain, anuj" <[EMAIL PROTECTED]> wrote: You are welcome, For compiling your code using cl.exe you need to provide more 'compiler and linker" options on the command line like the include directories libraries and the defines etc. A "cl -help" will provide you all possible o

Re: Linking Error.

2004-07-28 Thread Layla
Ken, Thank you.Ken Goldman <[EMAIL PROTECTED]> wrote: > Thank you SO much! :) that certainly solved the linking problem> using the graphical user interface of MS visual studio, but would> you know why isn't it compiling or linking from the command line? is> there something that I must run first? an

Re: Linking Error.

2004-07-28 Thread Gisle Vanem
"Ken Goldman" <[EMAIL PROTECTED]> said: > Note that both the makefile and nmake.exe are MS proprietary. You > can't use standard makefiles with nmake, and you can't use the MS > makefiles with a standard make.exe like gnu make. But you can use a GNU makefile with MS tools like cl.exe. There is

RE: how to add 'startdate' parameter in conf file ?

2004-07-28 Thread Jaleel P.A
I was trying for Root CA. Thanks -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Dr. Stephen Henson Sent: Wednesday, July 28, 2004 6:17 PM To: [EMAIL PROTECTED] Subject: Re: how to add 'startdate' parameter in conf file ? On Mon, Jul 26, 2004, Jaleel P.

Re: problem signing CSR

2004-07-28 Thread Dr. Stephen Henson
On Wed, Jul 28, 2004, Laurent Mesuré wrote: > Dr. Stephen Henson wrote: > > >> > >> > > > >You should probably try the latest 0.9.7-stable snapshot. > > > > > > > I've already done that > > I'm using openssl-0.9.7d on a Mandrake Linux box > Do you mean you are using 0.9.7d release? If so g

Re: Linking Error.

2004-07-28 Thread Ken Goldman
> From: "Gisle Vanem" <[EMAIL PROTECTED]> > Date: Wed, 28 Jul 2004 20:45:38 +0200 > > "Ken Goldman" <[EMAIL PROTECTED]> said: > > > Note that both the makefile and nmake.exe are MS proprietary. You > > can't use standard makefiles with nmake, and you can't use the MS > > makefiles with a standar

"tls rsa encrypted value length is wrong" error

2004-07-28 Thread dragos liciu
Hi, I've created a TLS client and currently I'm testing it with openssl TLS server (s_server option) When client send its KEY EXCHANGE message, the server reports the error below: SSL3_get_client_key_exchange"tls rsa encrypted value length is wrong" I've double-checked the size of the premast

Re: how to add 'startdate' parameter in conf file ?

2004-07-28 Thread Dr. Stephen Henson
On Thu, Jul 29, 2004, Jaleel P.A wrote: > I was trying for Root CA. > The unfortunately there isn't currently an option to do that. A root CA is created using either the 'req' or the 'x509' utility and neither have an option to explicitly set the start date. Its not hard to add an option to eit

Re: problem signing CSR

2004-07-28 Thread Laurent Mesuré
Dr. Stephen Henson wrote: Do you mean you are using 0.9.7d release? If so get the latest 0.9.7-stable snapshot: it fixes several bugs (including that one) which are in 0.9.7d. As i'm using RPM packages, i had to wait for the correct package. Otherwise i would have some interference between pack

Re: problem signing CSR

2004-07-28 Thread Laurent Mesuré
Dr. Stephen Henson wrote: Do you mean you are using 0.9.7d release? If so get the latest 0.9.7-stable snapshot: it fixes several bugs (including that one) which are in 0.9.7d. AH, i forget. That kind of answer remind me about Microsoft answer: It don't work? use the new version Laurent _

Re: problem signing CSR

2004-07-28 Thread Dr. Stephen Henson
On Wed, Jul 28, 2004, Laurent Mesuré wrote: > Dr. Stephen Henson wrote: > > >Do you mean you are using 0.9.7d release? If so get the latest 0.9.7-stable > >snapshot: it fixes several bugs (including that one) which are in 0.9.7d. > > > > > As i'm using RPM packages, i had to wait for the correct

how to force single process model in MPM worker

2004-07-28 Thread Yan Zhou
Hi, I have tried setting ServerLimits and StartUpServer both to 1, I still have three httpd processes, one is the control process and the other two are the worker processes. But I only want one worker process. I changed StartUpServer and ServerLimits to 5, I still got the same three httpd proces

PLS REMOVE ALL EMAILS TO @planetbroadcasters.com

2004-07-28 Thread Tony Nikolovski
PLS REMOVE ALL EMAILS TO @planetbroadcasters.com from the mailing list Thanks - Original Message - From: Layla To: [EMAIL PROTECTED] Sent: Thursday, July 29, 2004 1:10 AM Subject: Re: Linking Error. Thanks for the response Vio, Actually I'm not familiar wit

annoying unsubscribe requests

2004-07-28 Thread Vio
Guys, re-read your instructions to remove yourselves from this list, and stop sending your requests to the list proper. It's kind of annoying (much like spamming, no offence). If you ever want to remove yourself from this mailing list, you can send mail to <[EMAIL PROTECTED]> with the following co

max sessions?

2004-07-28 Thread Joseph Bruni
Hello all, I'm developing an application that is used as a messaging hub for thousands of users. The idea was that the users would maintain their SSL connections indefinitely because one would never know when a message was to be delivered and the messages need to be sent in near-real-time. So