using System; namespace sharp.hashing { public interface IHash { byte[] compute(byte[] data); byte[] compute(string data); } }