diff --git a/include/decrypter.h b/include/decrypter.h deleted file mode 100644 index a56e547..0000000 --- a/include/decrypter.h +++ /dev/null @@ -1,6 +0,0 @@ -#ifndef WHY2_DECRYPTER_H -#define WHY2_DECRYPTER_H - -char *decryptText(char *text, char *key); //TEXT from WILL BE DECRYPTED WITH KEY AND RETURNED - -#endif \ No newline at end of file diff --git a/include/encrypter.h b/include/encrypter.h deleted file mode 100644 index c4dd49f..0000000 --- a/include/encrypter.h +++ /dev/null @@ -1,6 +0,0 @@ -#ifndef WHY2_ENCRYPTER_H -#define WHY2_ENCRYPTER_H - -char *encryptText(char *text, char *keyNew); //TEXT from WILL BE ENCRYPTED WITH RANDOM PASSWORD [KEY] (WHICH WILL BE PRINTED OUT) AND RETURNED - -#endif \ No newline at end of file diff --git a/include/flags.h b/include/flags.h deleted file mode 100644 index 7bc540a..0000000 --- a/include/flags.h +++ /dev/null @@ -1,10 +0,0 @@ -#ifndef WHY2_FLAGS_H -#define WHY2_FLAGS_H - -#define KEY_LENGTH 50 -#define ENCRYPTION_SEPARATOR '.' -#define ENCRYPTION_SEPARATOR_STRING "." - -#define INVALID_KEY 1 - -#endif \ No newline at end of file