Add randomx and randomx_secure modules for random number generation

This commit is contained in:
Palash Tyagi 2025-07-17 23:58:45 +01:00
parent b86c140126
commit c995b8723e

5
src/random/mod.rs Normal file
View File

@ -0,0 +1,5 @@
pub mod randomx;
pub mod randomx_secure;
pub use randomx::RandomX;
pub use randomx_secure::SecureRandomX;