openssL error:

2008-03-10 Thread Arp22
hi i am getting the following error when i run the command: gcc -o client client.o -lcrypto -lssl In function 'main': undefined reference to 'init_OpenSSL' undefined reference to 'handle_error' --- what shud i do? please help! -- View this message in context:

Help in ssl

2008-03-10 Thread Terry Richardson
Hi, I have hosting account with Powweb (call4save.com) and need to install my own ssl certificate. I have already signed certificate (CSR) from godaddy . May you please help. Tell me the price you'll take to configure my own ssl for me. Regards Terry Richardson

regarding ciphersuites

2008-03-10 Thread gopinath ethiraja
when I used the s_client command C:\OpenSSL\binopenssl s_client -connect localhost:443 Loading 'screen' into random state - done CONNECTED(02D0) depth=0 /CN=localhost verify error:num=18:self signed certificate verify return:1 depth=0 /CN=localhost verify return:1 --- Certificate chain 0

Re: openssL error:

2008-03-10 Thread jimmy bahuleyan
Arp22 wrote: hi i am getting the following error when i run the command: gcc -o client client.o -lcrypto -lssl In function 'main': undefined reference to 'init_OpenSSL' undefined reference to 'handle_error' --- what shud i do? please help! I hope the fact that these are not Openssl

Doubt about the PKCS5_PBKDF2_HMAC_SHA1() function

2008-03-10 Thread Agustin Cozzetti
Hello everybody, I have a doubt about the PKCS5_PBKDF2_HMAC_SHA1() function. I have to realize a master key derivation on the client and server, using a password to obtain the session encrypt key. I use the PKCS5_PBKDF2_HMAC_SHA1() function to reach this purpose. If i use the same input,

Re: Help in ssl

2008-03-10 Thread Victor Duchovni
On Sun, Mar 09, 2008 at 10:57:01PM -0400, Terry Richardson wrote: I have hosting account with Powweb (call4save.com) and need to install my own ssl certificate. I have already signed certificate (CSR) from godaddy . May you please help. Tell me the price you'll take to configure my own

Re: Doubt about the PKCS5_PBKDF2_HMAC_SHA1() function

2008-03-10 Thread Marek . Marcola
Hello, I have a doubt about the PKCS5_PBKDF2_HMAC_SHA1() function. I have to realize a master key derivation on the client and server, using a password to obtain the session encrypt key. I use the PKCS5_PBKDF2_HMAC_SHA1() function to reach this purpose. If i use the same input, should i

Clarification questions on OpenSSL thread-safe support

2008-03-10 Thread Bryan Sutula
After studying the OpenSSL threads(3) man page: http://openssl.org/docs/crypto/threads.html and the FAQ: http://openssl.org/support/faq.html#PROG1 I'm still a bit confused about what's needed when using OpenSSL in a threaded environment. Most of the confusion results from the statements

MOdifying Makefile for windows build...

2008-03-10 Thread Bruno, Frank
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Bryan Sutula Sent: Monday, March 10, 2008 7:23 PM To: openssl-users@openssl.org Subject: Clarification questions on OpenSSL thread-safe support After studying the OpenSSL threads(3) man page:

Modifying Makefile for windows build...

2008-03-10 Thread Bruno, Frank
Sorry for the previous post, long day. I'm working on a porting OpenSSL to a new RTOS. My development environment and compiler run on Windows not Linux. I'd like to modify the Makefile to compile the sources under Windows. Can anyone suggest what may be involved to get a compilation working

Re: cipher algorithms

2008-03-10 Thread Brian Trzupek
I can partially answer question #1. Yes, the client send the list of ciphers it supports to the server. The server will then pick the 'strongest' cipher from the list for negotiating the session. The priority is based on strength, best I can tell and differ between server implementations.