Hi,
I've wrote a C++ program on windows (client-server) using gcc with following commands:

SOCKET(...)
bind(..)
select(..)
recv(..)
send(..)
close(..)

1- If I want to convert the application to use SSL3, what should I change? I need a general overview to get me started.

2- If I want to convert the application to Linux platform, I guess I'll use:

read()
write()

how to change that to use SSL3?

Thanks alot for your help!

Recommended Answers

All 3 Replies

The sockets will be still the same, the data will be encrypted.

so are you saying that no code should be changed? only the libraries?

I remember I saw in another forum that there will be extra commands, I just can't remember.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.