From 7e2a8dbd051b94115672cf22cc66ef09ba8376ca Mon Sep 17 00:00:00 2001 From: marcinzelent Date: Sat, 17 Mar 2018 15:30:15 +0100 Subject: .NET Core is cool! --- .../PasswordCrackerServer/Program.cs | 106 --------------------- 1 file changed, 106 deletions(-) delete mode 100644 PasswordCrackerDistributed/PasswordCrackerServer/Program.cs (limited to 'PasswordCrackerDistributed/PasswordCrackerServer/Program.cs') diff --git a/PasswordCrackerDistributed/PasswordCrackerServer/Program.cs b/PasswordCrackerDistributed/PasswordCrackerServer/Program.cs deleted file mode 100644 index 4ae77a3..0000000 --- a/PasswordCrackerDistributed/PasswordCrackerServer/Program.cs +++ /dev/null @@ -1,106 +0,0 @@ -using System; -using System.Collections.Generic; -using System.IO; -using System.Net; -using System.Net.Sockets; -using System.Text; -using System.Threading.Tasks; - -namespace PasswordCrackerServer -{ - class Program - { - static int NumberOfClients = 1; - - static void Main(string[] args) - { - List userInfos = PasswordFileHandler.ReadPasswordFile("passwords.txt"); - List clients = new List(); - List allChunks = new List(); - - string users = ""; - foreach (UserInfo u in userInfos) - users += u + "|"; - - var dictionary = File.ReadAllText("webster-dictionary.txt"); - dictionary = dictionary.Replace("\r\n", "|"); - var splitDictionary = SplitDictionary(dictionary); - for (int i = 0; i < splitDictionary.GetLength(0); i++) - { - StringBuilder chunk = new StringBuilder(); - for (int j = 0; j < splitDictionary.GetLength(1); j++) - { - chunk.Append(splitDictionary[i, j]); - chunk.Append('|'); - } - allChunks.Add(chunk.ToString()); - } - - IPAddress ip = IPAddress.Any; - TcpListener serversocket = new TcpListener(ip, 6789); - - serversocket.Start(); - Console.WriteLine("Server started."); - int counter = 0; - while (true) - { - if (clients.Count == NumberOfClients) - { - string[] returnedResult = RunAsync(clients).Result; - foreach (string s in returnedResult) - Console.WriteLine(s); - } - else - { - TcpClient connectionSocket = serversocket.AcceptTcpClient(); - Console.WriteLine("Client connected."); - - clients.Add(new clientConnection(connectionSocket, allChunks[counter], users)); - counter++; - } - } - serversocket.Stop(); - } - - private static string[,] SplitDictionary(string dictionary) - { - string[] dicWords = dictionary.Split('|'); - int dicWordsLength = dicWords.Length; - string[,] splitDictionary = new string[NumberOfClients, dicWordsLength / NumberOfClients]; - int offset = 0; - int j = 0; - - for (int i = 0; i < NumberOfClients; i++) - { - while (j < dicWordsLength / NumberOfClients) - { - splitDictionary[i, j] = dicWords[j + offset]; - j++; - } - offset += dicWordsLength / NumberOfClients; - j = 0; - } - - return splitDictionary; - } - - public static async Task RunAsync(List clients) - { - List> tasks = new List>(); - for (int i = 0; i < NumberOfClients; i++) - tasks[i] = clients[i].SendToClient(); - - string[] result = await Task.WhenAll(tasks); - - /* - var C1 = await C1task; - var C2 = await C2task; - var C3 = await C3task; - var C4 = await C4task; - var C5 = await C5task; - */ - return result; - } - - } -} -- cgit v1.2.3