Implement Client

This commit is contained in:
2021-06-08 22:31:13 +02:00
parent c11911c4a7
commit 8b8447649a
4 changed files with 210 additions and 11 deletions

View File

@@ -0,0 +1,14 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Akari.Prototype.Client
{
enum Mode
{
Encrypt,
Decrypt
}
}