sharp-hashing/IHash.cs

10 lines
137 B
C#
Raw Normal View History

2017-09-20 12:12:20 +02:00
using System;
namespace sharp.hashing
{
public interface IHash
{
byte[] compute(byte[] data);
byte[] compute(string data);
}
}