12 lines
215 B
C#
12 lines
215 B
C#
namespace MxGateway.Server.Security.Authentication;
|
|
|
|
public enum ApiKeyVerificationFailure
|
|
{
|
|
None,
|
|
MissingOrMalformedCredentials,
|
|
PepperUnavailable,
|
|
KeyNotFound,
|
|
KeyRevoked,
|
|
SecretMismatch
|
|
}
|