init repo

This commit is contained in:
Cat Vaala
2022-06-13 03:53:40 +00:00
parent fdd7eff7d8
commit 3466e2693b
34 changed files with 7408 additions and 0 deletions

8
server/makefile_p Normal file
View File

@@ -0,0 +1,8 @@
server_p:server_p.c aes-debug.o aes-gcm.o aes-internal.o
gcc server_p.c -o server_p aes-debug.o aes-gcm.o aes-internal.o -l gmp
aes-debug.o:aes-debug.c
gcc -c aes-debug.c -o aes-debug.o
aes-gcm.o:aes-gcm.c
gcc -c aes-gcm.c -o aes-gcm.o
aes-internal.o:aes-internal.c
gcc -c aes-internal.c -o aes-internal.o