19 lines
492 B
C#
19 lines
492 B
C#
|
using System.Text;
|
|||
|
using Microsoft.IdentityModel.Tokens;
|
|||
|
|
|||
|
namespace Persistence.Models.Configurations
|
|||
|
{
|
|||
|
public static class JwtParams
|
|||
|
{
|
|||
|
private static readonly string KeyValue = "супер секретный ключ для шифрования";
|
|||
|
public static SymmetricSecurityKey SecurityKey
|
|||
|
{
|
|||
|
get { return new SymmetricSecurityKey(Encoding.ASCII.GetBytes(KeyValue)); }
|
|||
|
}
|
|||
|
|
|||
|
public static readonly string Issuer = "a";
|
|||
|
|
|||
|
public static readonly string Audience = "a";
|
|||
|
}
|
|||
|
}
|