lb-rs 26.4.13

The rust library for interacting with your lockbook.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use super::crypto::ECSigned;
use super::meta::Meta;

pub type SignedMeta = ECSigned<Meta>;

// Impl'd to avoid comparing encrypted
impl PartialEq for SignedMeta {
    fn eq(&self, other: &Self) -> bool {
        self.timestamped_value.value == other.timestamped_value.value
            && self.public_key == other.public_key
    }
}