mirror of
https://github.com/TalAloni/SMBLibrary.git
synced 2025-07-03 00:03:19 +02:00
24 lines
634 B
C#
24 lines
634 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();
|
|
}
|
|
}
|
|
}
|