rabin_ida 0.1.3

Rabin's information dispersal algorithm, originally by Liam Perlaki
Documentation
1
2
3
4
5
6
7
/// A share part
#[derive(Debug, Clone)]
pub struct RabinShare {
    pub id: u8,
    pub length: usize,
    pub body: Vec<u8>,
}