Possible Duplicate:
Is it possible to decrypt md5 hashes?
I hashed data with ComputeHash how can I learn original data from hashed data?
private void btn_Hash_Click(object sender, EventArgs e)
{
    HashAlgorithm ha = HashAlgorithm.Create();
    Stream file = new FileStream(@"C:\temp\simetrik.txt", FileMode.Open, FileAccess.Read);
    hashClass.hash = ha.ComputeHash(file);
    listBox1.Items.Add(BitConverter.ToString(hashClass.hash));
}
 
     
     
     
    