From 61ca4111a1a500214fb6824782ef1afbbfcebb07 Mon Sep 17 00:00:00 2001 From: "W.C.A. Wijngaards" Date: Thu, 9 Jul 2026 09:21:56 +0200 Subject: [PATCH] Changelog note and explanation comment for #1383 - Merge #1383 from jdek: Fix randomness generation on macOS/iOS under chroot. --- compat/getentropy_osx.c | 2 ++ doc/Changelog | 4 ++++ 2 files changed, 6 insertions(+) diff --git a/compat/getentropy_osx.c b/compat/getentropy_osx.c index d8134b30a..ab9456a24 100644 --- a/compat/getentropy_osx.c +++ b/compat/getentropy_osx.c @@ -20,6 +20,8 @@ * http://man.openbsd.org/getentropy.2 */ +/* Modified to use SecRandomCopyBytes. It is from macOS 10.7 (2011) and + * iOS 2.0 (2008), and is the primary API for cryptographic random numbers. */ #include #include diff --git a/doc/Changelog b/doc/Changelog index 348c4e01c..15bb42477 100644 --- a/doc/Changelog +++ b/doc/Changelog @@ -1,3 +1,7 @@ +9 July 2026: Wouter + - Merge #1383 from jdek: Fix randomness generation on + macOS/iOS under chroot. + 2 July 2026: Wouter - Merge #1087: Overload `local_data_remove` to support removing specific records.