From 6227b8eb0ae69c2253241277bed03d0dca91452b Mon Sep 17 00:00:00 2001 From: ENGO150 Date: Sat, 13 Apr 2024 14:20:26 +0200 Subject: [PATCH] changed WHY2_CHAT_RSA_EXPONENT base to 62 so now it isn't 65537 but H33 --- include/chat/crypto.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/chat/crypto.h b/include/chat/crypto.h index 9249e8a..e3065ec 100644 --- a/include/chat/crypto.h +++ b/include/chat/crypto.h @@ -28,7 +28,7 @@ extern "C" { //MACROS #define WHY2_CHAT_KEY_BITS 4096 //BITS.. #define WHY2_CHAT_PRIME_ITERS 100 //NUMBER OF ITERATIONS WHEN CHECKING PRIME NUMBER -#define WHY2_CHAT_RSA_EXPONENT "65537" //DEFAULT e +#define WHY2_CHAT_RSA_EXPONENT "H33" //DEFAULT e IN BASE WHY2_CHAT_KEY_BASE #define WHY2_CHAT_KEY_LOCATION WHY2_CHAT_CONFIG_DIR "/keys" //KEYS LOCATION #define WHY2_CHAT_PUB_KEY "pub"