1
0

Initial commit

This commit is contained in:
2022-12-15 20:10:44 +01:00
commit ee66b0b643
13 changed files with 208 additions and 0 deletions

6
inc/decode.h Normal file
View File

@@ -0,0 +1,6 @@
#ifndef DECODE_H
#define DECODE_H
int decode(char* filename_input, char* filename_key, char* filename_output);
#endif

6
inc/encode.h Normal file
View File

@@ -0,0 +1,6 @@
#ifndef ENCODE_H
#define ENCODE_H
int encode(char* filename_input, char* filename_key, char* filename_output);
#endif

6
inc/key.h Normal file
View File

@@ -0,0 +1,6 @@
#ifndef KEY_H
#define KEY_H
int create_key(char* filename_input, char* filename_output);
#endif