Files
Alexandru Macocian c8bfaffb42 Fix namespaces
2021-11-15 22:04:18 +01:00

13 lines
255 B
C#

using System.IO;
using System.Threading.Tasks;
namespace System.Security.Hashing
{
public interface IHashingService
{
Task<string> Hash(string raw);
Task<byte[]> Hash(byte[] raw);
Task<Stream> Hash(Stream raw);
}
}