Hey I want to create a Client/ Server which talk over a network using SSL?
can any one help me to write the app in C++???
is there a standard library or else How could it be done???
any help is appriciated!!!
Printable View
Hey I want to create a Client/ Server which talk over a network using SSL?
can any one help me to write the app in C++???
is there a standard library or else How could it be done???
any help is appriciated!!!
Try OpenSSL.
What kind of application ur trying to write?
Vinod
Its a smiple socket connection app.. where the client will send the data to the server when ever it is necessary and the server recevies it ...But I want to do this over SSL..
BTW... what is openSSL??
Its open source SSL lib
http://www.openssl.org/
To understand how SSL works first you need to read the about PKI(public key infrastuture), Digitalk certificate the mechanism SSL use to autheticate & encrypt the data.
Vinod