public static bool VerifyRijndaelHash(this string plainText, string hashValue, HashType hashType = HashType.Md5)
 {
     try
     {
         return(TenjinRijndael.VerifyHash(plainText, hashValue, hashType));
     }
     catch
     {
         return(false);
     }
 }