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

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