FTP over TLS

2006-10-24 Thread Yogesh Chawla - PD
Hello All, The state of wisc. wrote a script to do FTP over TLS using pycurl. I can post this here, but first need to yank a bunch of password info out and get some security clearance. If someone is interested and wants to email me offline, please do so at this address. Cheers, Yogesh -- http

Re: FTP over TLS

2005-11-28 Thread adam
I'm not 100% sure whether this answers your problem, but I would ignore getting a special TLS module and just concentrate on the ftp side of the protocol. If your connection to your ftp server must be in TLS, you could modify you socket module similar to how I have using this diff (against 2.3.4)

Re: FTP over TLS

2005-11-28 Thread Paul Rubin
adam [EMAIL PROTECTED] writes: I'm not 100% sure whether this answers your problem, but I would ignore getting a special TLS module and just concentrate on the ftp side of the protocol. If your connection to your ftp server must be in TLS, you could modify you socket module similar to how I

Re: FTP over TLS

2005-11-28 Thread Carl Waldbieser
Dima Barsky wrote: Carl Waldbieser [EMAIL PROTECTED] wrote: Does anyone know of any good examples for writing client side code to upload files over a secure FTP connection? I am referring to FTPS, *not* SFTP, which I found out the hard way are two different things. Look at the CURL

Re: FTP over TLS

2005-11-26 Thread Carl Waldbieser
David Isaac wrote: Carl Waldbieser [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Does anyone know of any good examples for writing client side code to upload files over a secure FTP connection? http://trevp.net/tlslite/ Alan Isaac Thanks. I have actually looked at this

Re: FTP over TLS

2005-11-25 Thread David Isaac
Carl Waldbieser [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Does anyone know of any good examples for writing client side code to upload files over a secure FTP connection? http://trevp.net/tlslite/ Alan Isaac -- http://mail.python.org/mailman/listinfo/python-list

Re: FTP over TLS

2005-11-24 Thread Dima Barsky
Carl Waldbieser [EMAIL PROTECTED] wrote: Does anyone know of any good examples for writing client side code to upload files over a secure FTP connection? I am referring to FTPS, *not* SFTP, which I found out the hard way are two different things. Look at the CURL library, the manual says

FTP over TLS

2005-11-23 Thread Carl Waldbieser
Does anyone know of any good examples for writing client side code to upload files over a secure FTP connection? I am referring to FTPS, *not* SFTP, which I found out the hard way are two different things. I am not really all that familiar with FTPS, but from what I understand, when the client

Re: FTP over TLS

2005-11-23 Thread Paul Rubin
Carl Waldbieser [EMAIL PROTECTED] writes: Does anyone know of any good examples for writing client side code to upload files over a secure FTP connection? I am referring to FTPS, *not* SFTP, which I found out the hard way are two different things. I am not really all that familiar with FTPS,