mirror of
https://github.com/mRemoteNG/mRemoteNG.git
synced 2026-02-26 03:58:45 +08:00
9 lines
172 B
C#
9 lines
172 B
C#
using System.Security;
|
|
|
|
namespace mRemoteNG.Security.Authentication
|
|
{
|
|
public interface IAuthenticator
|
|
{
|
|
bool Authenticate(SecureString password);
|
|
}
|
|
} |