P
pershing33
I need to create a client-side/server-side application in Java that
will be able to receive and send data over the Internet.
In short, on the client-side the user inputs data (from a GUI) which is
locally encrypted using a public key and then send it to the server.
The client-side will also decrypt and display encrypted data sent from
the server. The use of standard secure protocols such as SSL/TLS is out
of question.
I know it won't be possible to integrate that into a simple web page
since I have to perform client-side operations demanding more that what
HTML and javascript can handle (ex: encryption protocols) . Therefore,
I want to have some sort of Java application that will do it.
In this regard, is it worth using client-side Servlets or Web Start
keeping in mind that it will have to support networking? Would you
recommend another approach than Servlets or Web Start?
Thanks for any help
will be able to receive and send data over the Internet.
In short, on the client-side the user inputs data (from a GUI) which is
locally encrypted using a public key and then send it to the server.
The client-side will also decrypt and display encrypted data sent from
the server. The use of standard secure protocols such as SSL/TLS is out
of question.
I know it won't be possible to integrate that into a simple web page
since I have to perform client-side operations demanding more that what
HTML and javascript can handle (ex: encryption protocols) . Therefore,
I want to have some sort of Java application that will do it.
In this regard, is it worth using client-side Servlets or Web Start
keeping in mind that it will have to support networking? Would you
recommend another approach than Servlets or Web Start?
Thanks for any help