public static bool VerifyHash(string source, string hashedValueSalt, string hashedValue)
        {
            string hashedSource = Hashing.HashValue(source, hashedValueSalt);

            return(hashedSource.Equals(hashedValue));
        }