Files
SystemExtensions/SystemExtensions.NetStandard.Security/Hashing/IHashingService.cs
T
2021-07-14 12:17:31 +03:00

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