mirror of
https://github.com/AlexMacocian/SystemExtensions.git
synced 2026-07-16 22:39:29 +00:00
e6a06915cd
Codestyle fixes Setup CODEOWNERS Setup dependabot
12 lines
229 B
C#
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);
|
|
}
|