We detected that Javascript is disabled in your Web browser.
You must enable Javascript to utilize the functionality of this Website.
How to encrypt and submit data securely without Secure Sockets Layer (SSL)
Step 1: Server generates RSA key and shows only public key to the web user. Private RSA key is stored on server side. Only server can decrypt submitted data.
Step 2: User enters password:
Step 3: User hits [Submit] button, JavaScript will encrypt password, convert encrypted bytes to Base64 code and submit the form. Note: You can use strong password and AES symmetric encryption to submit extra data.