Send and Receive your Private email Messages Securely over Internet

What is AES Technique?

The Advanced Encryption Standard (AES) is a specification for the encryption of electronic data established by the U.S. National Institute of Standards and Technology (NIST) in 2001.It is based on the Rijndael cipher developed by two Belgian cryptographers, Joan Daemen and Vincent Rijmen, who submitted a proposal which was evaluated by the NIST during the AES selection process. AES has been adopted by the U.S. government and is now used worldwide. It supersedes the Data Encryption Standard (DES),which was published in 1977. The algorithm described by AES is a symmetric-key algorithm, meaning the same key is used for both encrypting and decrypting the data.
 
Visit my website http://mayankg.com/simba.html for live demo of this application.
 
Instruction for Non Technical Users

A. How to make a Secret Message to be send over Email or Mobile
  1. If you want to encrypt a new message then copy your plain text message into the 1st box and choose any of your passwords you can remember in the password box and then press the button "Encrypt".
  2. Then you will see a Red color message in a text area just below the plain text box.

Note

This is your Secret Encrypted message which is pretty secure and cannot by broken by any of super computers in the world even if that machine is using Brute force technique. It will take that machine atleast 15 to 20 years continously non-stop working.

B. How to decode the Secret Message back to its normal form

  1. Copy your secret message into the first plain box.
  2. Make sure that your mouse pointer should be from very starting of the plain box without leaving a single blank space, otherwise this technique will not work.
  3. Press the Button given just below with name "Copy Secret Message to Encryption Box and then Press Decrypt".
  4. Now you will see that the very same message is copied with red color in the Encryption text Box.
  5. Now enter the same password in the password box which was used to encode the message.
  6. Now press the Button "Decrypt" and you will get your original Message in the Last Box with Blue Color.

Instruction for Developers/Coders

This implementation would be invoked as follows:

var password = 'Type your password here' ;
var plaintext = 'This is to write your message you want to encrypt' ; 
var ciphertext = Aes . Ctr . encrypt ( plaintext , password , 256 );// This function is used to encrypt your plain message with the help of password you give 
var origtext = Aes . Ctr . decrypt ( ciphertext , password , 256 );// This function will decrypt your encrypted message with the same password it was encrypted. 

Disclaimer 
 
This encryption technique is only given for educational purpose for developers who have to deal with security related softwares and need fast processing of their systems while dealing with encryption. Owner of this website will not be responsible for any misuse or damage by the code to the machine or organisation or an individual either physically, financially, security threat or by any other direct or indirect mean. Users/Coders will hold full responsibility for any such misuse of this technique. For any further legal enquiry, Lucknow High Court will be the place of judgement. 
Ebook Download
View all
Learn
View all