mirror of
https://github.com/ditkrg/asp.netcore-authentication.git
synced 2026-01-23 06:56:45 +00:00
16 lines
412 B
C#
16 lines
412 B
C#
using Microsoft.AspNetCore.Authentication;
|
|
using Microsoft.AspNetCore.Http;
|
|
|
|
namespace DIT.Authentication.GatewayAuth;
|
|
|
|
public static class GatewayAuthDefaults
|
|
{
|
|
public const string AuthenticationScheme = "Gateway";
|
|
|
|
public const string ConfigurationSection = "Authentication:Gateway";
|
|
|
|
public const string UserHeader = "x-auth-user";
|
|
|
|
public const string SignatureHeader = "x-auth-signature";
|
|
}
|