feat(security): cookie+JWT hybrid auth via AddOtOpcUaAuth

This commit is contained in:
Joseph Doherty
2026-05-26 04:35:48 -04:00
parent 93316e3431
commit 207fc6aba9
3 changed files with 87 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
namespace ZB.MOM.WW.OtOpcUa.Security;
public sealed class OtOpcUaCookieOptions
{
public const string SectionName = "Security:Cookie";
public string Name { get; set; } = "OtOpcUa.Auth";
/// <summary>Idle sliding window, in minutes (default 30).</summary>
public int ExpiryMinutes { get; set; } = 30;
}