SMBLibrary/SMBLibrary.Tests/Program.cs
2021-03-24 14:34:08 +01:00

24 lines
636 B
C#

using System;
using System.Collections.Generic;
using System.IO;
namespace SMBLibrary.Tests
{
class Program
{
static void Main(string[] args)
{
new NTLMAuthenticationTests().TestAll();
new NTLMSigningTests().TestAll();
new AesCcmTests().TestAll();
new SMB2EncryptionTests().TestAll();
new RC4Tests().TestAll();
new NetBiosTests().TestAll();
new RPCTests().TestAll();
new SMB2SigningTests().TestAll();
//new NTDirectoryFileSystemTests().TestAll();
}
}
}