From 6ede019547958e8449bea2cc70b600fbc26f972d Mon Sep 17 00:00:00 2001 From: ENGO150 Date: Fri, 23 Feb 2024 11:11:35 +0100 Subject: [PATCH] created pub & pri key location macros --- include/chat/crypto.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/chat/crypto.h b/include/chat/crypto.h index e05e003..d12c7f4 100644 --- a/include/chat/crypto.h +++ b/include/chat/crypto.h @@ -31,6 +31,8 @@ extern "C" { #define WHY2_CHAT_RSA_EXPONENT 65537 //DEFAULT e #define WHY2_CHAT_KEY_LOCATION WHY2_CHAT_CONFIG_DIR "/keys" //KEYS LOCATION +#define WHY2_CHAT_PUB_KEY "pub" +#define WHY2_CHAT_PRI_KEY "pri" void why2_chat_generate_keys(void); //GENERATE RSA KEYS