BankProject/Client/Program.cs
GabrielTofvesson 41e8d969ed Refactorings:
* Moved encryption algorithms into a folder
* Sorted networking into separate files

Additions:
* Created Elliptic Curve encryption implementation
* Generalized the key exchange implementation
    - Implemented Diffie-Hellman key exchange
    - Implemented Elliptic Curve Diffie-Hellman key exchange
* Started implementing binary data compressor

Changes:
* Changed NetClient and NetServer to use IKeyExchange for initial AES key exchange instead of RSA (for optimization)
* Adapted TextView implementation to properly support optional borders
* Fed InputView issue caused due to border rendering change
* Fixed and simplified Rectangle computations
* Fixed errant naming in Session layout file
* Fixed errant i18n naming in Session layout file
* Fixed resize background rendering issue in ConsoleController
* Fully implemented ListView (needs testing)
* Updated BankInteractor and server to use ECDH-E with Curve25519

Removals:
* Removed identity verification from NetClient (identities checks should be performed as a layer on top of NetClient/NetServer, not as part of it)
2018-04-09 03:26:00 +02:00

67 lines
2.1 KiB
C#

using System;
using System.IO;
using System.Runtime.InteropServices;
using Client;
using Client.ConsoleForms;
using Client.ConsoleForms.Parameters;
using Common;
namespace ConsoleForms
{
class Program
{
public static TextWriter DebugStream = new DebugAdapterWriter();
private static ConsoleController controller = ConsoleController.singleton;
static void Main(string[] args)
{
// Set up timestamps in debug output
DebugStream = new TimeStampWriter(DebugStream, "HH:mm:ss.fff");
byte[] serialized;
using (BinaryCollector collector = new BinaryCollector(1))
{
collector.Push(5f);
serialized = collector.ToArray();
}
Padding p = new AbsolutePadding(2, 2, 1, 1);
Console.CursorVisible = false;
Console.Title = "Tofvesson Enterprises"; // Set console title
// Start with the networking context
ContextManager manager = new ContextManager();
manager.LoadContext(new NetContext(manager));
// Start input listener loop. Graphics happen here too (triggered by keystrokes)
ConsoleController.KeyEvent info = new ConsoleController.KeyEvent(default(ConsoleKeyInfo))
{
ValidEvent = false
};
bool first = true;
do
{
if (first) first = false;
else info = controller.ReadKey();
bool b = manager.Update(info), haskey = false;
while (b)
{
System.Threading.Thread.Sleep(25);
haskey = _kbhit() != 0;
if (haskey) info = controller.ReadKey(false);
b = manager.Update(info, haskey);
controller.Draw();
}
} while (!info.ValidEvent || info.Event.Key != ConsoleKey.Escape);
}
// Detects if a key has been hit without blocking
[DllImport("msvcrt")]
public static extern int _kbhit();
}
}