#This project is about AES Encryption and Decryption.
#In AES_Enc.java: #we want to enrypt a plainText using initial key, So the inputs of the problem are a 128 bit plainText plus initial key and our output will be a 128 bit cipherText.
#In AES_Dec.java the algorithm is exactly vise versa, mean: #Our inputs are a cypherText with an initial key, So we sholud decrypt it and send the decrypted cypherText called plainText to output.
#HOPE TO ENJOY!