public static string Descrypt(string cipherText, string pass)
 {
     string initVector = INIT_VECTOR_ENCRYPT_DECRYPT;
     RijndaelEnhanced re = new RijndaelEnhanced(pass, initVector);
     return re.Decrypt(cipherText);
 }