mirror of
https://github.com/esiur/esiur-dotnet.git
synced 2026-04-03 20:08:21 +00:00
19 lines
439 B
C#
19 lines
439 B
C#
using Esiur.Net.Packets;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Esiur.Security.Authority
|
|
{
|
|
public interface IAuthenticationHandler
|
|
{
|
|
public AuthenticationResult Initialize(Session session);
|
|
|
|
public AuthenticationResult Process(object handshakePayload);
|
|
|
|
public void Terminate(Session session);
|
|
|
|
public void Update(Session session, object authData);
|
|
}
|
|
}
|