From f9a7a8c7fcbdabc2616aceaa6a3fb6346a90e54c Mon Sep 17 00:00:00 2001 From: Leonetienne Date: Mon, 6 Dec 2021 10:07:35 +0100 Subject: [PATCH] Made 512 bit the default block size --- GhettoCrypt/Config.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GhettoCrypt/Config.h b/GhettoCrypt/Config.h index 8798a53..5cf1f74 100644 --- a/GhettoCrypt/Config.h +++ b/GhettoCrypt/Config.h @@ -2,6 +2,6 @@ namespace GhettoCipher { - constexpr int BLOCK_SIZE = 128; + constexpr int BLOCK_SIZE = 512; constexpr int N_ROUNDS = 64; }