Files
SystemExtensions/SystemExtensions.NetStandard.Security/Hashing/IHashingService.cs
T

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);
}
}