Skip to content

Commit 47e95bb

Browse files
Nip04::decrypt - Allocate memory on the heap instead of the stack (#9)
* Allocate memory on the heap instead of the stack When receiving big responses, such as for list_transactions, the memory constraints of the ESP32 really become apparent, especially when using the pre-built esp-idf from the Arduino IDE's board manager, with its fixed configuration. The stack memory size is particularly constaining. It seems to have around ~4KB free when the code ends up in the loop() function, so there's really no room to allocate big arrays there. A typical transaction from a list_transactions reply is around 4KB on its own because NWC is a pretty verbose protocol (JSON encapsulation, encryption, base64 encoding, hex encoding) and it was causing a crash due to all the stack memory being used up. This modification allocates the memory on the heap using malloc(), which fixes the issue. The heap memory itself is also pretty limited, and there are probably other places that would need to be rewritten to improve this further, or to be able to handle arbitrarily large transactions. * Use NostrString for portability
1 parent dd11eae commit 47e95bb

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

src/Nip04.cpp

+7-7
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,7 @@ NostrString Nip04::decrypt(NostrString &privateKeyHex, NostrString &senderPubKey
1010

1111
NostrString encryptedMessageHex = Utils::base64ToHex(encryptedMessage);
1212
int encryptedMessageSize = NostrString_length(encryptedMessageHex) / 2;
13-
byte encryptedMessageBin[encryptedMessageSize];
14-
Utils::fromHex(encryptedMessageHex, encryptedMessageBin, encryptedMessageSize);
13+
if (!encryptedMessageSize) return NostrString(); // nothing to do (can happen if base64ToHex returns "" because out of memory)
1514

1615
NostrString iv = NostrString_substring(content, ivParamIndex + 4);
1716
NostrString ivHex = Utils::base64ToHex(iv);
@@ -76,12 +75,13 @@ void Nip04::stringToByteArray(const char *input, int padding_diff, byte *output)
7675

7776
NostrString Nip04::decryptData(byte key[32], byte iv[16], NostrString messageHex) {
7877
int byteSize = NostrString_length(messageHex) / 2;
79-
byte messageBin[byteSize];
78+
byte* messageBin = (byte*)malloc(byteSize);
79+
if (!messageBin) return NostrString();
8080
Utils::fromHex(messageHex, messageBin, byteSize);
81-
8281
AES_ctx ctx;
8382
AES_init_ctx_iv(&ctx, key, iv);
84-
AES_CBC_decrypt_buffer(&ctx, messageBin, sizeof(messageBin));
85-
86-
return NostrString_substring(NostrString((char *)messageBin),0, byteSize);
83+
AES_CBC_decrypt_buffer(&ctx, messageBin, byteSize);
84+
NostrString result = NostrString_substring(NostrString((char *)messageBin),0, byteSize);
85+
free(messageBin);
86+
return result;
8787
}

0 commit comments

Comments
 (0)