Improved NTLM authentication API

This commit is contained in:
Tal Aloni 2017-02-17 19:01:58 +02:00
parent 05f49c3128
commit 217451d18f
23 changed files with 602 additions and 526 deletions

18
SMBServer/User.cs Normal file
View file

@ -0,0 +1,18 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace SMBLibrary.Server
{
public class User
{
public string AccountName;
public string Password;
public User(string accountName, string password)
{
AccountName = accountName;
Password = password;
}
}
}