pub struct Rng<'d, T: Instance> { /* private fields */ }
Expand description
A wrapper around an nRF RNG peripheral.
It has a non-blocking API, and a blocking api through rand
.
Implementations§
Source§impl<'d, T: Instance> Rng<'d, T>
impl<'d, T: Instance> Rng<'d, T>
Sourcepub fn new(
rng: impl Peripheral<P = T> + 'd,
_irq: impl Binding<T::Interrupt, InterruptHandler<T>> + 'd,
) -> Self
pub fn new( rng: impl Peripheral<P = T> + 'd, _irq: impl Binding<T::Interrupt, InterruptHandler<T>> + 'd, ) -> Self
Creates a new RNG driver from the RNG
peripheral and interrupt.
SAFETY: The future returned from fill_bytes
must not have its lifetime end without running its destructor,
e.g. using mem::forget
.
The synchronous API is safe.
Sourcepub fn set_bias_correction(&self, enable: bool)
pub fn set_bias_correction(&self, enable: bool)
Enable or disable the RNG’s bias correction.
Bias correction removes any bias towards a ‘1’ or a ‘0’ in the bits generated. However, this makes the generation of numbers slower.
Defaults to disabled.
Sourcepub async fn fill_bytes(&mut self, dest: &mut [u8])
pub async fn fill_bytes(&mut self, dest: &mut [u8])
Fill the buffer with random bytes.
Sourcepub fn blocking_fill_bytes(&mut self, dest: &mut [u8])
pub fn blocking_fill_bytes(&mut self, dest: &mut [u8])
Fill the buffer with random bytes, blocking version.
Trait Implementations§
Source§impl<'d, T: Instance> RngCore for Rng<'d, T>
impl<'d, T: Instance> RngCore for Rng<'d, T>
Source§fn fill_bytes(&mut self, dest: &mut [u8])
fn fill_bytes(&mut self, dest: &mut [u8])
Fill
dest
with random data. Read moreimpl<'d, T: Instance> CryptoRng for Rng<'d, T>
Auto Trait Implementations§
impl<'d, T> Freeze for Rng<'d, T>where
T: Freeze,
impl<'d, T> RefUnwindSafe for Rng<'d, T>where
T: RefUnwindSafe,
impl<'d, T> Send for Rng<'d, T>
impl<'d, T> Sync for Rng<'d, T>where
T: Sync,
impl<'d, T> Unpin for Rng<'d, T>where
T: Unpin,
impl<'d, T> !UnwindSafe for Rng<'d, T>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CryptoRngCore for T
impl<T> CryptoRngCore for T
Source§fn as_rngcore(&mut self) -> &mut dyn RngCore
fn as_rngcore(&mut self) -> &mut dyn RngCore
Upcast to an
RngCore
trait object.