Linking errors while using OpenSSL functions in VC++ 6

2004-06-18 Thread Saeideh Ghanipour
Hi, I wrote a program in VC++ 6 to read a X509 certificates from a file but I when I was linking it I received a lot of Unresolved External func in module. I tried to find the file in which each of unresolved functions was declared and added them to my project but again I received another errors

Signing with Encryption and Signing Keypair

2004-06-18 Thread Ramon Amat Jimenez
I have made following exercise. 1) I have two separate KeyPairs, one for signing and one for encryption Mozilla and Outlook - do recognize the signature - do verfiy the signature - BUT DOES NOT INCLUDE THE ENCRYPTION 2) I have one KeyPair only and both Mozilla and Outlook - do recognize

Re: how to get client IP on Server

2004-06-18 Thread Ringaby Anders
There is also the possibility to use the getpeername() function on a connected socket. Here are some pieces of code: struct sockaddr_in addr; int address_size; address_size = sizeof(addr); if(getpeername(sd, addr, address_size) != -1) {

Digital signature creation

2004-06-18 Thread pedro . j . sousa
Hi, I'm completely new to this Digital Signature functionality and i would like to know what do i need to create Private/Public keys to exchange files with another entity, and also, if it is mandatory to create Certificates. If so, where can i send the certificate a generate? regards and

SSL Handshake

2004-06-18 Thread Madhuri Rambhatla
Hi, I am trying to establish a successful handshake with a SSL server. I am using openSSL version 0.9.7d and my compiler MS Visual Studio.NET and OS is WIN 2K, Server I do not see any methods that let me do it. Can someone please tell me how to establish a successful SSL handshake. Thanks.

Re: Digital signature creation

2004-06-18 Thread Mike Sontum
Man pages for the openssl command on www.openssl.org Openssl is an executable that can be used to generate certificates, keys, etc. The page http://www.post1.com/home/ngps/m2/howto.ca.html has a tutorial on certificates. This uses the CA.pl which is a Perl wrapper that can be very helpful. It

RE: Digital signature creation

2004-06-18 Thread pedro . j . sousa
Thanks. If i want to generate a private/public key in order to sign my outgoing files to another entity, do i need to create certificates to validate my keys, or i just need to create the keys and send the public to the other entity? Where do i store the keys? Can i use it, just like

RE: SSL Handshake

2004-06-18 Thread Saju Paul
Check 'Network Security with OpenSSL' by John Veiga, Matt Messier and Pravir Chandra -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Madhuri Rambhatla Sent: Friday, June 18, 2004 10:14 AM To: [EMAIL PROTECTED] Subject: SSL Handshake Hi, I am trying to

Segmentation fault when accessing TLS web server using OpenSSL and Crypt::SSLeay

2004-06-18 Thread Scialino Marco
Hi, I hope someone can give me help on this. After installing perl, openssl and Crypt::SSLeay I built a simple perl program to connect to a web server that has *only* Transport Layer Protocol (TLS V1) enabled, but I get a segmentation fault. The same program has no problem if connecting to a

RE: TLS and TOS

2004-06-18 Thread Elie Lalo
You are right. We updated the keys in the registry to make TOS works. Thanks Elie At 01:12 PM 6/17/2004 -0400, Lee Dilkie wrote: Are you sure it *actually* worked? The function call will appear to succeed, but win2K and above don't allow programs to set TOS anymore, unless you fiddle with the

RE: Open SSL

2004-06-18 Thread adminguy
David, You mentioned you have different areas to Implement OpenSSL. Lets take Sales and Marketing as our examples. Ex1: https://sales.something.com Ex2: http://marketing.something.com In here Sales Department will be listening on 443 port and rest on port 80. Socket Layer default

Extensions to char

2004-06-18 Thread Nelson Gamazo Sánchez
Hi I am working with OpenSSL extensions; I need convert the extension (X509_EXTENSION) to char (both key, and value). No problem converting the key part :-). But: Why OpenSSL do something like this to covert to BIO, FILE, etc? if(method-it) ext_str = ASN1_item_d2i(NULL, data,

Re: Segmentation fault when accessing TLS web server using OpenSSL and Crypt::SSLeay

2004-06-18 Thread Josh Chamas
Scialino Marco wrote: Hi, I hope someone can give me help on this. After installing perl, openssl and Crypt::SSLeay I built a simple perl program to connect to a web server that has *only* Transport Layer Protocol (TLS V1) enabled, but I get a segmentation fault. The same program has no