Started changes onto websocket message

This commit is contained in:
Alexandru Macocian
2019-11-07 16:43:25 +01:00
parent 0ed4ac8c2c
commit 9272f7fc58
2 changed files with 4 additions and 3 deletions
+2 -2
View File
@@ -17,9 +17,9 @@ namespace MTSC_TestServer
static void Main(string[] args)
{
//X509Certificate2 certificate = new X509Certificate2("localhost.pfx", "psdsd");
Server server = new Server(500);
Server server = new Server(443);
RSACryptoServiceProvider rsa = new RSACryptoServiceProvider(1024);
EncryptionHandler encryptionHandler = new EncryptionHandler(rsa);
//EncryptionHandler encryptionHandler = new EncryptionHandler(rsa);
server
//.AddHandler(encryptionHandler)
.AddLogger(new ConsoleLogger())