asp.netcore-authentication/src/GatewayAuth/Defaults.cs
2023-03-06 13:20:35 +03:00

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