Block::get_bytes()

This commit is contained in:
Neemek 2025-11-07 21:34:36 +01:00
parent 1fad1ffc4f
commit 808012c03a
Signed by: neemek
GPG key ID: 84FFE4D7D40AB25E

View file

@ -63,6 +63,10 @@ impl Block {
self.nonce = next_nonce; self.nonce = next_nonce;
self.compute_block(); self.compute_block();
} }
pub fn get_bytes(&self) -> [u8; 64] {
self.chunk
}
} }
#[inline] #[inline]