Secure Random for Rust
Overview
The secure-random crate provides a simple and secure way to generate random numbers in Rust.
It defines a SecureRandom trait for generating random u64 values and offers a default
implementation using the getrandom crate.
##Features
- Trait Definition:
SecureRandomtrait for generating secure randomu64numbers. - Default Implementation:
GetRandomstruct implementsSecureRandomusing the operating system’s random number generator. - Integration: Seamlessly integrate secure random number generation into your projects.
Installation
Add secure-random to your Cargo.toml:
[]
= "^0.0.1"
License
This project is licensed under the MIT License - see the LICENSE file for details.