implemented tkch_version in why2_input_flags

This commit is contained in:
Václav Šmejkal 2024-01-24 15:11:22 +01:00
parent bd92cd312d
commit 42f406f6b6
Signed by: ENGO150
GPG Key ID: 4A57E86482968843
6 changed files with 8 additions and 5 deletions

View File

@ -71,6 +71,7 @@ typedef struct
why2_bool no_check; //BOOLEAN FOR SKIPPING WHY2_VERSION CHECK
why2_bool no_output; //BOOLEAN FOR NOT PRINTING OUTPUT WHEN ENCRYPTING/DECRYPTING
why2_bool update; //BOOLEAN FOR UPDATING YOUR WHY WHY2_VERSION IF OLD IS USED
enum WHY2_TEXT_KEY_CHAIN_VERSIONS version; //VERSION OF tkch
} why2_input_flags;
typedef struct

View File

@ -23,7 +23,7 @@ along with this program. If not, see <https://www.gnu.org/licenses/>.
int main(void)
{
//SET FLAGS
why2_set_flags((why2_input_flags) {1, 1, 0});
why2_set_flags((why2_input_flags) { 1, 1, 0, WHY2_v4 });
//RUN ENCRYPTION WITH WHY2_TEXT_TO_ENCRYPT, GENERATE NEW KEY AND DO NOT CHECK FOR ACTIVE WHY2_VERSION & PREVENT ANY OUTPUT
why2_output_flags encryptedText = why2_encrypt_text(WHY2_TEXT_TO_ENCRYPT, NULL);

View File

@ -25,7 +25,7 @@ along with this program. If not, see <https://www.gnu.org/licenses/>.
#include <why2/memory.h>
//CONSTS (this is just local)
#define DEFAULT_FLAGS (why2_input_flags) { 0, 0, 0 }
#define DEFAULT_FLAGS (why2_input_flags) { 0, 0, 0, WHY2_v4}
#define DEFAULT_MEMORY_IDENTIFIER ""
int encryptionOperation(int text, int encryptedText);

View File

@ -43,7 +43,8 @@ int main(void)
{
0, //SKIP CHECK
0, //NO OUTPUT
0 //UPDATE
0, //UPDATE
WHY2_v4 //LATEST VERSION
};
//SET FLAGS

View File

@ -15,7 +15,8 @@ int main(void)
{
1,
1,
0
0,
WHY2_v4
}
);

View File

@ -135,7 +135,7 @@ void why2_write_log(int loggerFile, char *logMessage)
why2_log_flags flags = why2_get_log_flags();
//SET ENCRYPTER FLAGS
if (!why2_get_flags_changed()) why2_set_flags((why2_input_flags) { 0, 1, 0 });
if (!why2_get_flags_changed()) why2_set_flags((why2_input_flags) { 0, 1, 0, WHY2_v4 });
if (flags.key != NULL) //ENCRYPT TEXT IF KEY WAS CHANGED
{