upleb.uk

Public git repos — served from a NIP-34 GRASP relay at git.upleb.uk

summaryrefslogtreecommitdiff
path: root/tests/unit/stubs/esp_system.h
diff options
context:
space:
mode:
authorYour Name <you@example.com>2026-05-17 05:27:06 +0530
committerYour Name <you@example.com>2026-05-17 05:27:06 +0530
commitfdf662f8f1a1a3b38fe4d251982fffab8e9bf664 (patch)
tree2413bdc936b757adf4849a522b7df2a5c8eb0aec /tests/unit/stubs/esp_system.h
parentedd125d0e3fe5fe7c0edf30c429723f3b0120c68 (diff)
Phase 7: MCP handler (25 tests), NIP-04 encrypt/decrypt (15 tests), CVM server skeleton
- mcp_handler.c/h: 4 tools (get_config, set_config, get_balance, wallet_send) - nip04.c/h: AES-256-CBC + ECDH with 0x02 compressed pubkey prefix - Fixed IV copy bug: mbedTLS AES-CBC modifies IV in-place - Base64 encode/decode for ciphertext transport - PKCS7 padding - cvm_server.c/h: Nostr DM listener with FreeRTOS task - config: cvm_enabled, cvm_relays fields - 156 total tests passing across 10 test binaries
Diffstat (limited to 'tests/unit/stubs/esp_system.h')
-rw-r--r--tests/unit/stubs/esp_system.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/unit/stubs/esp_system.h b/tests/unit/stubs/esp_system.h
index 8e63c80..cd54743 100644
--- a/tests/unit/stubs/esp_system.h
+++ b/tests/unit/stubs/esp_system.h
@@ -1,4 +1,14 @@
1#ifndef STUBS_ESP_SYSTEM_H 1#ifndef STUBS_ESP_SYSTEM_H
2#define STUBS_ESP_SYSTEM_H 2#define STUBS_ESP_SYSTEM_H
3 3
4#include <stdlib.h>
5#include <stdint.h>
6
7static inline void esp_fill_random(uint8_t *buf, size_t len)
8{
9 for (size_t i = 0; i < len; i++) {
10 buf[i] = (uint8_t)(rand() & 0xFF);
11 }
12}
13
4#endif 14#endif