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