using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Tango.Core.Cryptography { /// /// Represents a hashing generator. /// public interface IHashGenerator : IEncryptor { /// /// Validates the specified text against the specified hash. /// /// The text. /// The hash. bool Validate(String text, String hash); } }