transfer data over SSL we must use the CURL libraries?
Moderator: General Moderators
transfer data over SSL we must use the CURL libraries?
If we want to transfer data over SSL we must use the CURL libraries??
No, I don't think so. But you do have to have an SSL certificate, and apache configured with the ssl module.
Then again, I've never used SSL before.
Then again, I've never used SSL before.
Set Search Time - A google chrome extension. When you search only results from the past year (or set time period) are displayed. Helps tremendously when using new technologies to avoid outdated results.
- Chris Corbyn
- Breakbeat Nuttzer
- Posts: 13098
- Joined: Wed Mar 24, 2004 7:57 am
- Location: Melbourne, Australia
You can use SSL with the FTP functions I think, and you can also open sockets with SSL or TLS encryption enabled:
Code: Select all
$sock = fsockopen("ssl://servername", $port, $errno, $errstr);I would probably use the ssh extension and use the ssh2_recv and ssh2_send methods.. (
As you'll see in the documentation, it's quite a powerful extension and you might choose a different option (eg: ssh2_sftp))
As you'll see in the documentation, it's quite a powerful extension and you might choose a different option (eg: ssh2_sftp))