Re: [flexcoders] Re: How to connect SSL pop server such as Gmail?

2008-06-10 Thread Josh McDonald
Hmm, I wasn't even thinking of SSL actually, you'd probably want that atop an existing socket proxy? I don't know if SSL is secure against man-in-the-middle, and if that protection would make it impossible to proxy, but I think it's doable. -Josh On Wed, Jun 11, 2008 at 12:39 PM, Dmitri Girski

[flexcoders] Re: How to connect SSL pop server such as Gmail?

2008-06-10 Thread Dmitri Girski
you have 2 options: a) wait for Adobe to implement SSL support b) do it yourself I bet that the second option is much faster, even if it takes you 6 months :) Here is the library which contains everything you need to implement SSL support http://crypto.hurlant.com/ Cheers, Dmitri.

[flexcoders] Re: How to connect SSL pop server such as Gmail?

2008-06-10 Thread Dmitri Girski
Hi Josh, With SSL there is no need to use proxies, you have to maintain the direct link with the other side. And the SSL/TLS implementation is quite simple - check the certificate, generate the keys, exchange them and then just send/receive encrypted messages. There is only one problem with SSL