mirror of
https://github.com/esiur/esiur-dotnet.git
synced 2026-04-04 12:28:21 +00:00
21 lines
498 B
C#
21 lines
498 B
C#
using Esiur.Security.Authority;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Esiur.Protocol.Authentication
|
|
{
|
|
public class HashAnonymousAuthenticator : IAuthenticationHandler
|
|
{
|
|
public AuthenticationResult Initiate(Session session)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public AuthenticationResult Process(object handshakePayload)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
}
|