[][src]Struct libss::shamir::Shamir

pub struct Shamir;

A set of functions for Shamir Secret Sharing

Methods

impl Shamir[src]

pub fn split(
    secret: &[u8],
    k: usize,
    n: usize
) -> Result<Vec<Share<GF256>>, &'static str>
[src]

Splits a secret (a byte slice) into n shares, of which only k are needed to recover the secret This requires 0 < k <= n < 256 and supports arbitrary sized secrets

pub fn combine(shares: &[Share<GF256>]) -> Vec<u8>[src]

Combines a slice of shares to recover the secret which is returned as a vector of bytes

Auto Trait Implementations

impl Send for Shamir

impl Sync for Shamir

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]