Struct sn_routing::SectionChain[][src]

pub struct SectionChain { /* fields omitted */ }

Chain of section BLS keys where every key is proven (signed) by its parent key, except the first one.

CRDT

The operations that mutate the chain (insert and merge) are commutative, associative and idempotent. This means the chain is a CRDT.

Forks

It’s possible to insert multiple keys that all have the same parent key. This is called a “fork”. The chain implements automatic fork resolution which means that even in the presence of forks the chain presents the blocks in a well-defined unique and deterministic order.

Block order

Block are ordered primarily according to their parent-child relation (parents always precede children) and forks are resolved by additionally ordering the sibling blocks according to the Ord relation of their public key. That is, “lower” keys precede “higher” keys.

Implementations

impl SectionChain[src]

pub fn new(root: PublicKey) -> Self[src]

Creates a new chain consisting of only one block.

pub fn insert(
    &mut self,
    parent_key: &PublicKey,
    key: PublicKey,
    signature: Signature
) -> Result<(), Error>
[src]

Insert new key into the chain. parent_key must exists in the chain and must validate signature, otherwise error is returned.

pub fn merge(&mut self, other: Self) -> Result<(), Error>[src]

Merges two chains into one.

This succeeds only if the root key of one of the chain is present in the other one. Otherwise it returns Error::InvalidOperation

pub fn minimize<'a, I>(&self, required_keys: I) -> Result<Self, Error> where
    I: IntoIterator<Item = &'a PublicKey>, 
[src]

Creates a minimal sub-chain of self that contains all required_keys. Returns Error::KeyNotFound if some of required_keys is not present in self.

Note: “minimal” means it contains the fewest number of blocks of all such sub-chains.

pub fn truncate(&self, count: usize) -> Self[src]

Returns a sub-chain of self truncated to the last count keys. NOTE: a chain must have at least 1 block, so if count is 0 it is treated the same as if it was 1.

pub fn extend(
    &self,
    trusted_key: &PublicKey,
    super_chain: &Self
) -> Result<Self, Error>
[src]

Returns the smallest super-chain of self that would be trusted by a peer that trust trusted_key.

Returns Error::KeyNotFound if either trusted_key or self.last_key() is not present in super_chain.

Returns Error::InvalidOperation if trusted_key is not reachable from self.last_key().

pub fn keys(&self) -> impl DoubleEndedIterator<Item = &PublicKey>[src]

Iterator over all the keys in the chain in order.

pub fn root_key(&self) -> &PublicKey[src]

Returns the root key of this chain. This is the first key in the chain and is the only key that doesn’t have a parent key.

pub fn last_key(&self) -> &PublicKey[src]

Returns the last key of this chain.

pub fn has_key(&self, key: &PublicKey) -> bool[src]

Returns whether key is present in this chain.

pub fn check_trust<'a, I>(&self, trusted_keys: I) -> bool where
    I: IntoIterator<Item = &'a PublicKey>, 
[src]

Given a collection of keys that are already trusted, returns whether this chain is also trusted. A chain is considered trusted only if at least one of the trusted_keys is on its main branch.

Explanation

Consider this chain that contains fork:

A->B->C
   |
   +->D

Now if the only trusted key is D, then there is no way to prove the chain is trusted, because this chain would be indistinguishable in terms of trust from any other chain with the same general “shape”, say:

W->X->Y->Z
   |
   +->D

So an adversary is easily able to forge any such chain.

When the trusted key is on the main branch, on the other hand:

D->E->F
   |
   +->G

Then such chain is impossible to forge because the adversary would have to have access to the secret key corresponding to D in order to validly sign E. Thus such chain can be safely considered trusted.

pub fn cmp_by_position(&self, lhs: &PublicKey, rhs: &PublicKey) -> Ordering[src]

Compare the two keys by their position in the chain. The key that is higher (closer to the last key) is considered Greater. If exactly one of the keys is not in the chain, the other one is implicitly considered Greater. If none are in the chain, they are considered Equal.

pub fn len(&self) -> usize[src]

Returns the number of blocks in the chain. This is always >= 1.

pub fn main_branch_len(&self) -> usize[src]

Returns the number of block on the main branch of the chain - that is - the ones reachable from the last block.

NOTE: this is a O(n) operation.

Trait Implementations

impl Clone for SectionChain[src]

impl Debug for SectionChain[src]

impl<'de> Deserialize<'de> for SectionChain[src]

impl Eq for SectionChain[src]

impl Hash for SectionChain[src]

impl PartialEq<SectionChain> for SectionChain[src]

impl Serialize for SectionChain[src]

impl StructuralEq for SectionChain[src]

impl StructuralPartialEq for SectionChain[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Member for T where
    T: Clone + Hash + Eq

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,