I need an obvious example about AES decryption. i just want to know how it works in order to make my own coding of this algorithm so, I neither want code nor algorithms, i just want some explanation of how it works, I need to understand it first before i can make an implemetation fir it. Can someone give me tutorials or references?
1 Answer
How about Moserware's A Stick Figure Guide to the Advanced Encryption Standard (AES)? It's clear and entertaining. Don't forget to sign and date the Foot-Shooting Prevention Agreement.
-
@March ,many thanx ,the explanation is abvious and i hope i can understand it , in order to make my own AES decryption algorithm code .– palAlaaCommented Nov 22, 2010 at 16:01
decrypted_data = aes_decrypt(key, encrypted_data);
as the answer.