Pre-mbedTLS cleanup checkpoint - OpenSSL migration complete, all tests passing

This commit is contained in:
2025-08-14 11:51:26 -04:00
parent 5a7c796873
commit 6d7b709f9a
17 changed files with 1438 additions and 49 deletions

View File

@@ -219,7 +219,7 @@ static int test_bip39_entropy_to_mnemonic() {
char mnemonic[256];
int ret = nostr_bip39_mnemonic_from_bytes(entropy, 16, mnemonic, sizeof(mnemonic));
int ret = nostr_bip39_mnemonic_from_bytes(entropy, 16, mnemonic);
// Should generate a valid 12-word mnemonic from zero entropy
if (ret == 0 && strlen(mnemonic) > 0) {