[][src]Struct sharing::KrawczykSecretSharing

pub struct KrawczykSecretSharing<C: StreamCipher + NewStreamCipher, R: Rng> { /* fields omitted */ }

Krawczyk Secret Sharing

use sharing::{KrawczykSecretSharing, Sharing};

let data = [1, 2, 3, 4, 5].to_vec();

let sharer = KrawczykSecretSharing::<chacha20::ChaCha20, _>::new(5, 3, rand::thread_rng());

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<R: Rng + Clone, C: StreamCipher + NewStreamCipher> KrawczykSecretSharing<C, R>[src]

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

Trait Implementations

impl<R: Rng, C: StreamCipher + NewStreamCipher> Sharing for KrawczykSecretSharing<C, R>[src]

type Share = KrawczykShare

Auto Trait Implementations

impl<C, R> Unpin for KrawczykSecretSharing<C, R> where
    C: Unpin,
    R: Unpin

impl<C, R> !Sync for KrawczykSecretSharing<C, R>

impl<C, R> Send for KrawczykSecretSharing<C, R> where
    C: Send,
    R: Send

impl<C, R> UnwindSafe for KrawczykSecretSharing<C, R> where
    C: UnwindSafe,
    R: UnwindSafe

impl<C, R> !RefUnwindSafe for KrawczykSecretSharing<C, R>

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