mirror of
https://github.com/AlexMacocian/SystemExtensions.git
synced 2026-07-15 14:19:29 +00:00
13 lines
277 B
C#
13 lines
277 B
C#
using System.IO;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace SystemExtensions.NetStandard.Security.Hashing
|
|
{
|
|
public interface IHashingService
|
|
{
|
|
Task<string> Hash(string raw);
|
|
Task<byte[]> Hash(byte[] raw);
|
|
Task<Stream> Hash(Stream raw);
|
|
}
|
|
}
|