Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

encrypting data

Status
Not open for further replies.
May 8, 2004
92
0
0
GB
Hey guys,

what is the simple way to encrypt data that is submited by simple html forms.

cheers.
 
Use a secure server.

There are various encryption algorithms, but they are often slow running through server-side scripting. You can look up javascript encryption in a search engine to see what's already been developed. Encryption algorithms go from very simple and easy to crack to basically uncrackable in your lifetime.

The question to ask you is what you need to encrypt, and that way we can get an idea of what level of security is practical.

Lee
 
Basically strings of data that is data submitted via forms..thats what i wanna encrypt
 
Use a secure server. That will encrypt data passing back and forth between the client and server. It's what it was designed for.

Lee
 
To use HTTPS you need to install a certificate on the web server.

This is not as hard as it sounds so you could do it yourself. Also many hosting sites offer this service.
 
Another option would be to use an ASP encryption plugin that will encrypt the data and pass it across a normal unprotected internet connection. This may hold advantages if you have a slower internet connection on the web server, but will require large amounts of processing by the server and therefore is only suitable to more computationally pwoerful machines.

An example of these encryption components would be ASPEncrypt which is available from persits Software.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top