Files
SystemExtensions/SystemExtensions.NetStandard.Security/Hashing/IHashingService.cs
T
amacocian e6a06915cd Improve IHttpClient factories (#20)
Codestyle fixes
Setup CODEOWNERS
Setup dependabot
2022-09-06 15:49:07 +02:00

12 lines
229 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);
}