Struct secured_linked_list::SecuredLinkedList[][src]

pub struct SecuredLinkedList { /* fields omitted */ }
Expand description

Chain of 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 SecuredLinkedList[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 get_proof_chain(
    &self,
    from_key: &PublicKey,
    to_key: &PublicKey
) -> Result<Self, Error>
[src]

Creates a sub-chain from given from and to keys. Returns Error::KeyNotFound if the given keys are not present in the chain.

pub fn get_proof_chain_to_current(
    &self,
    from_key: &PublicKey
) -> Result<Self, Error>
[src]

Creates a sub-chain from a given key to the end. Returns Error::KeyNotFound if the given from key is not present in the chain.

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. Ensures that the last key of the resuling chain is the same as the last key of self.

Returns Error::KeyNotFound if any of trusted_key, self.root_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 prev_key(&self) -> &PublicKey[src]

Returns the parent key of the last key or the root key if this chain has only one key.

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.

pub fn index_of(&self, key: &PublicKey) -> Option<usize>[src]

Returns the index of the given key. Returns None if not present.

Trait Implementations

impl Clone for SecuredLinkedList[src]

fn clone(&self) -> SecuredLinkedList[src]

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for SecuredLinkedList[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter. Read more

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

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
    __D: Deserializer<'de>, 
[src]

Deserialize this value from the given Serde deserializer. Read more

impl Hash for SecuredLinkedList[src]

fn hash<__H: Hasher>(&self, state: &mut __H)[src]

Feeds this value into the given Hasher. Read more

fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0[src]

Feeds a slice of this type into the given Hasher. Read more

impl PartialEq<SecuredLinkedList> for SecuredLinkedList[src]

fn eq(&self, other: &SecuredLinkedList) -> bool[src]

This method tests for self and other values to be equal, and is used by ==. Read more

fn ne(&self, other: &SecuredLinkedList) -> bool[src]

This method tests for !=.

impl Serialize for SecuredLinkedList[src]

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error> where
    __S: Serializer
[src]

Serialize this value into the given Serde serializer. Read more

impl Eq for SecuredLinkedList[src]

impl StructuralEq for SecuredLinkedList[src]

impl StructuralPartialEq for SecuredLinkedList[src]

Auto Trait Implementations

Blanket Implementations

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

pub fn type_id(&self) -> TypeId[src]

Gets the TypeId of self. Read more

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

pub fn borrow(&self) -> &T[src]

Immutably borrows from an owned value. Read more

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

pub fn borrow_mut(&mut self) -> &mut T[src]

Mutably borrows from an owned value. Read more

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

pub fn from(t: T) -> T[src]

Performs the conversion.

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

pub fn into(self) -> U[src]

Performs the conversion.

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

type Owned = T

The resulting type after obtaining ownership.

pub fn to_owned(&self) -> T[src]

Creates owned data from borrowed data, usually by cloning. Read more

pub fn clone_into(&self, target: &mut T)[src]

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

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.

pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]

Performs the conversion.

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.

pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]

Performs the conversion.

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

pub fn vzip(self) -> V

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