From c995b8723efcd63dc2f99675f8814dc7a5fab9e4 Mon Sep 17 00:00:00 2001 From: Palash Tyagi <23239946+Magnus167@users.noreply.github.com> Date: Thu, 17 Jul 2025 23:58:45 +0100 Subject: [PATCH] Add randomx and randomx_secure modules for random number generation --- src/random/mod.rs | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 src/random/mod.rs diff --git a/src/random/mod.rs b/src/random/mod.rs new file mode 100644 index 0000000..dee2cfa --- /dev/null +++ b/src/random/mod.rs @@ -0,0 +1,5 @@ +pub mod randomx; +pub mod randomx_secure; + +pub use randomx::RandomX; +pub use randomx_secure::SecureRandomX; \ No newline at end of file