Delete include directory

This commit is contained in:
Šebestíček 2022-03-20 16:15:42 +01:00 committed by GitHub
parent 1b63f052ca
commit 77ca16e215
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 0 additions and 22 deletions

View File

@ -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

View File

@ -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

View File

@ -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