From 6d0dc6ae7bdc9a64741fa832a4ed8a493c857f54 Mon Sep 17 00:00:00 2001 From: Joel Aschmann Date: Tue, 21 Mar 2023 08:55:06 +0100 Subject: [PATCH] RNG: make hwrng, random private --- src/lib.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index a63b91a2..ae36c113 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -146,14 +146,14 @@ pub mod socket_embedded_nal_tcp; #[cfg(riot_module_periph_gpio)] pub mod gpio; -#[cfg(riot_module_periph_hwrng)] -pub mod hwrng; +#[cfg(riot_module_periph_hwrng)] +mod hwrng; #[cfg(riot_module_periph_hwrng)] pub mod prng; #[cfg(all(riot_module_random, riot_module_prng_sha256prng))] -pub mod random; +mod random; #[cfg(riot_module_bluetil_ad)] pub mod bluetil;