2025-10-09 16:26:44 +08:00
|
|
|
|
namespace LM.Core.Const
|
2025-09-25 14:37:10 +08:00
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 加密对应密钥Key
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public class Secret
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 用户密码加密key
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public string User { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 数据库加密key
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public string DB { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// redis加密key
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public string Redis { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// jwt加密key
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public string JWT { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
public string Audience { get; set; }
|
|
|
|
|
|
public string Issuer { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 导出文件加密key
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public string ExportFile = "C5ABA9E202D94C13A3CB66002BF77FAF";
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|