Files
mxaccessgw/src/MxGateway.Server/Security/Authentication/IApiKeySecretHasher.cs
T
2026-04-26 16:40:46 -04:00

7 lines
132 B
C#

namespace MxGateway.Server.Security.Authentication;
public interface IApiKeySecretHasher
{
byte[] HashSecret(string secret);
}