pub struct Blake3PoW { /* private fields */ }
Expand description
A SIMD-accelerated BLAKE3-based proof-of-work engine.
This struct encapsulates the state needed to search for a nonce such that
BLAKE3(challenge || nonce)
is below a difficulty threshold.
It leverages Platform::hash_many
for parallel hash evaluation using MAX_SIMD_DEGREE
lanes.
Trait Implementations§
Source§impl PowStrategy for Blake3PoW
impl PowStrategy for Blake3PoW
Source§fn new(challenge: [u8; 32], bits: f64) -> Self
fn new(challenge: [u8; 32], bits: f64) -> Self
Create a new Blake3PoW instance with a given challenge and difficulty.
The bits
parameter controls the difficulty. A higher number means
lower probability of success per nonce. This function prepares the SIMD
input buffer with the challenge prefix and sets the internal threshold.
§Panics
- If
bits
is not in the range [0.0, 60.0). - If
BLOCK_LEN
orOUT_LEN
do not match expected values.
Source§fn check(&mut self, nonce: u64) -> bool
fn check(&mut self, nonce: u64) -> bool
Check if a given nonce
satisfies the challenge.
This uses the standard high-level BLAKE3 interface to ensure full compatibility with reference implementations.
A nonce is valid if the first 8 bytes of the hash output,
interpreted as a little-endian u64
, are below the internal threshold.
Source§fn solve(&mut self) -> Option<u64>
fn solve(&mut self) -> Option<u64>
Search for the lowest nonce
that satisfies the challenge using parallel threads.
Each thread scans disjoint chunks of the nonce space in stride-sized steps. The first thread to find a satisfying nonce updates a shared atomic minimum, and all others check against it to avoid unnecessary work.
impl Copy for Blake3PoW
Auto Trait Implementations§
impl Freeze for Blake3PoW
impl RefUnwindSafe for Blake3PoW
impl Send for Blake3PoW
impl Sync for Blake3PoW
impl Unpin for Blake3PoW
impl UnwindSafe for Blake3PoW
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more