From c3c8ddb82e9c3cbc4148c14082cb4a15bef4f324 Mon Sep 17 00:00:00 2001 From: ENGO150 Date: Wed, 25 May 2022 18:01:13 +0200 Subject: [PATCH] changed KEY_LENGTH to 100 in why2-test the previous similar commit had only 75 chars, cuz the NULL character wasn't implemented xd https://github.com/ENGO150/WHY2/commit/5093d2395f5bef55c57181284d11fdcc4b5e247c --- src/lib/test/main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib/test/main.c b/src/lib/test/main.c index eb13373..8952b7a 100644 --- a/src/lib/test/main.c +++ b/src/lib/test/main.c @@ -17,8 +17,8 @@ int main(void) 0, //NO OUTPUT }; - //SET KEY_LENGTH TO 75 - setKeyLength(75); + //SET KEY_LENGTH TO 100 + setKeyLength(100); //ENCRYPT & DECRYPT outputFlags encrypted = encryptText(TEST_TEXT, NULL, flags);