pub struct AuditChallenge {
pub challenge_id: u64,
pub nonce: [u8; 32],
pub challenged_peer_id: [u8; 32],
pub keys: Vec<XorName>,
}Expand description
Storage audit challenge (Section 15).
The challenger picks a random nonce and a set of keys the challenged peer should hold, then sends this challenge. The challenged peer must prove storage by returning per-key BLAKE3 digests.
Fields§
§challenge_id: u64Unique challenge identifier.
nonce: [u8; 32]Random nonce for digest computation.
challenged_peer_id: [u8; 32]Challenged peer ID (included in digest computation).
keys: Vec<XorName>Ordered list of keys to prove storage of.
Trait Implementations§
Source§impl Clone for AuditChallenge
impl Clone for AuditChallenge
Source§fn clone(&self) -> AuditChallenge
fn clone(&self) -> AuditChallenge
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for AuditChallenge
impl Debug for AuditChallenge
Source§impl<'de> Deserialize<'de> for AuditChallenge
impl<'de> Deserialize<'de> for AuditChallenge
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for AuditChallenge
impl RefUnwindSafe for AuditChallenge
impl Send for AuditChallenge
impl Sync for AuditChallenge
impl Unpin for AuditChallenge
impl UnsafeUnpin for AuditChallenge
impl UnwindSafe for AuditChallenge
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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>
Converts
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>
Converts
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