Our current mode is:
[CLIENT] ----internet---> [SERVER]
The data between client and server is unprotected.
My suggest mode is:
[CLIENT] --> [SSL PROXY] ----internet---> [SSL GATEWAY] --> [SERVER]
CLIENT and SSL PROXY running on same client PC.
SSL GATEWAY and SERVER can be on same server PC or different, both are ok.
Local client connect to local SSL PROXY process, which listens data and forward data transparaently. In the remote server side, make a SSL GATEWAY to forward all data to real SERVER.
So, the data between client and server is well protected by standard SSL. The CLIENT and SERVER even don't know the existence of SSL, developers don't need to change a single source code.
What you guys think?
Easy way to implement security link using SSL technology
-
seeingrain
- Posts: 28
- Joined: 27 Mar 2014, 03:34
-
k0tbegemot
- Posts: 8
- Joined: 23 Mar 2014, 04:33
Re: Easy way to implement security link using SSL technology
This will require end user to setup ssl proxy which effectively kills the only real advantage of using Flash - 0 efforts install. This could work if you can package the ssl proxy into your client app somehow (you definitely can do it if client is Java based, not sure about Flash)
-
seeingrain
- Posts: 28
- Joined: 27 Mar 2014, 03:34
Re: Easy way to implement security link using SSL technology
Oh, you right~ I'm a C++ client API user... ahak0tbegemot wrote:This will require end user to setup ssl proxy which effectively kills the only real advantage of using Flash - 0 efforts install. This could work if you can package the ssl proxy into your client app somehow (you definitely can do it if client is Java based, not sure about Flash)
Re: Easy way to implement security link using SSL technology
If latency is not a problem this may work. Sure.