Data Encryption With JavaScript: jCryption
8
Aug
// php the_time('Y') ?>
Normally, when a data is submitted, it is sent in plain text if no SSL is used.
jCryption is a jQuery plugin for encrypting POST/GET data submitted by forms.
It uses public-key algorithm of RSA for the encryption & has a PHP file for handling the decryption of data.
Some features of jCryption:
- encryption up to 2048 bit
- AjaxSubmit supported
- doesn’t block the browser on calculations
The plugin is easy to install, use and extend. Calling the jCryption function:
$("#formID").jCryption();
and handling the data with the ready-to-use PHP function is enough.
Requirements: jQuery and PHP
Compatibility: All Major Browsers
Website: http://www.jcryption.org/
Demo: http://www.jcryption.org/demo/
Compatibility: All Major Browsers
Website: http://www.jcryption.org/
Demo: http://www.jcryption.org/demo/
- Tags:
Javascript RSA SSL
- Filed under: Extras, GPL License, MIT License, Security
- 1 Comment












One Response for "Data Encryption With JavaScript: jCryption"
Thanks so much! This is a great alternative for developers who don’t want to get involved with SSL.