created new why2-chat module

This commit is contained in:
Václav Šmejkal 2023-02-09 09:09:26 +01:00
parent 9c29743968
commit 6348fab4d9
Signed by: ENGO150
GPG Key ID: F6D6DF86242C5A59
3 changed files with 25 additions and 0 deletions

9
src/chat/README Normal file
View File

@ -0,0 +1,9 @@
WHY2-Chat's Client & Server
===========================
*In development, do not use.*
WHY2's Chat is another encrypted and completely private communication.
All messages are encrypted with WHY2 and only you know the key (even the server can't decrypt the messages).
I am not responsible for any abuse of privacy.

8
src/chat/client/main.c Normal file
View File

@ -0,0 +1,8 @@
#include <stdio.h>
int main(void)
{
printf("Here will be client...\n");
return 0;
}

8
src/chat/server/main.c Normal file
View File

@ -0,0 +1,8 @@
#include <stdio.h>
int main(void)
{
printf("Here will be server...\n");
return 0;
}