removed inputFlags from encrypt & decrypt functions

This commit is contained in:
Václav Šmejkal 2022-07-10 18:13:34 +02:00
parent c3b5db0124
commit ad21a520b5
No known key found for this signature in database
GPG Key ID: FD749A97DF2D5E19
4 changed files with 4 additions and 4 deletions

View File

@ -3,6 +3,6 @@
#include <why2/flags.h> #include <why2/flags.h>
outputFlags decryptText(char *text, char *keyNew, inputFlags flags); //TEXT from WILL BE DECRYPTED WITH KEY AND RETURNED outputFlags decryptText(char *text, char *keyNew); //TEXT from WILL BE DECRYPTED WITH KEY AND RETURNED
#endif #endif

View File

@ -3,6 +3,6 @@
#include <why2/flags.h> #include <why2/flags.h>
outputFlags encryptText(char *text, char *keyNew, inputFlags flags); //TEXT from WILL BE ENCRYPTED WITH RANDOM PASSWORD [KEY] (WHICH WILL BE PRINTED OUT) AND RETURNED outputFlags encryptText(char *text, char *keyNew); //TEXT from WILL BE ENCRYPTED WITH RANDOM PASSWORD [KEY] (WHICH WILL BE PRINTED OUT) AND RETURNED
#endif #endif

View File

@ -8,7 +8,7 @@
#include <why2/flags.h> #include <why2/flags.h>
#include <why2/misc.h> #include <why2/misc.h>
outputFlags decryptText(char *text, char *keyNew, inputFlags flags) outputFlags decryptText(char *text, char *keyNew)
{ {
//CHECK VARIABLE //CHECK VARIABLE
int checkExitCode; int checkExitCode;

View File

@ -9,7 +9,7 @@
#include <why2/flags.h> #include <why2/flags.h>
#include <why2/misc.h> #include <why2/misc.h>
outputFlags encryptText(char *text, char *keyNew, inputFlags flags) outputFlags encryptText(char *text, char *keyNew)
{ {
//CHECK VARIABLE //CHECK VARIABLE
int checkExitCode; int checkExitCode;