public string Calculate_MD5_Value(string input) { MD5 md; md = new MD5(); md.Message = input; return md.FingerPrint; }