[][src]Struct sharing::RabinInformationDispersal

pub struct RabinInformationDispersal { /* fields omitted */ }

Rabin Information Dispersal

use sharing::{RabinInformationDispersal, Sharing};
 
let data = [1, 2, 3, 4, 5].to_vec();
 
let sharer = RabinInformationDispersal::new(5, 3);

let shares = sharer.share(data.clone()).unwrap();
// You only need 3 out of the 5 shares to reconstruct
let rec = sharer.recontruct(shares[1..=3].to_vec()).unwrap();

assert_eq!(data, rec);

Methods

impl RabinInformationDispersal[src]

pub fn new(n: u8, k: u8) -> Self[src]

Trait Implementations

impl Sharing for RabinInformationDispersal[src]

type Share = RabinShare

Auto Trait Implementations

Blanket Implementations

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

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

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<T> BorrowMut<T> for T where
    T: ?Sized
[src]

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

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self