7 lines
132 B
C#
7 lines
132 B
C#
namespace MxGateway.Server.Security.Authentication;
|
|
|
|
public interface IApiKeySecretHasher
|
|
{
|
|
byte[] HashSecret(string secret);
|
|
}
|