Struct tor_netdoc::doc::netstatus::SharedRandVal
source · Expand description
A shared-random value produced by the directory authorities.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.n_reveals: u8
Available on crate feature
dangerous-expose-struct-fields
only.How many authorities revealed shares that contributed to this value.
value: Vec<u8>
Available on crate feature
dangerous-expose-struct-fields
only.The current random value.
The properties of the secure shared-random system guarantee that this value isn’t predictable before it first becomes live, and that a hostile party could not have forced it to have any more than a small number of possible random values.
Trait Implementations§
source§fn clone(&self) -> SharedRandVal
fn clone(&self) -> SharedRandVal
Returns a copy 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 more