>> I need a client / server solution that would allow me to send a file 
>> securely (encrypted) over the internet.
>> Perfect would be resume of interrupted transfers.
>> Is there something in the MBS plugins that would allow this?  CURL 
>> maybe..?

> If the server runs some ssh, ftp or http server software, CURL could 
> certainly upload.
> Like a FTP Server with a SSL encryption. Or File transfers over SSH.
> Or you write your own server and use an SSL Socket.

I think that I need to write my own server....

I just saw the "Network plugins" - there is a  "SendPacket (data as string)"

Would that be worth a try ?

What I need to do is basically something like this:

Client side /sender :   send a file
=======================
read a chunk of data from file - for example 1 MB  (read from a file)
encrypt that chunk
calculate MD5 hash
send chunk to a server (the server I must write, too)
wait til server confirms that chunk was received
get next chunk / Loop until EOF

Server side/receiver  :
===============
receive chunk that was sent by client - for example 1 MB
unencrypt chunk
check MD5 hash
write chunk to disk
send confirmation to sender that chunk was OK
wait for next chunk




_______________________________________________
Mbsplugins_monkeybreadsoftware.info mailing list
mbsplugins@monkeybreadsoftware.info
https://ml01.ispgateway.de/mailman/listinfo/mbsplugins_monkeybreadsoftware.info

Reply via email to