keri_core/event/sections/
mod.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
use crate::{prefix::BasicPrefix, state::WitnessConfig};
use serde::{Deserialize, Serialize};

pub mod key_config;
pub mod seal;
pub mod threshold;

pub use key_config::KeyConfig;

use self::threshold::SignatureThreshold;
#[derive(
    Serialize,
    Deserialize,
    Debug,
    Clone,
    PartialEq,
    rkyv::Archive,
    rkyv::Serialize,
    rkyv::Deserialize,
)]
#[rkyv(derive(Debug))]
pub struct RotationWitnessConfig {
    #[serde(rename = "bt")]
    pub tally: SignatureThreshold,

    #[serde(rename = "br")]
    pub prune: Vec<BasicPrefix>,

    #[serde(rename = "ba")]
    pub graft: Vec<BasicPrefix>,
}

#[derive(
    Serialize,
    Deserialize,
    Debug,
    Clone,
    PartialEq,
    rkyv::Archive,
    rkyv::Serialize,
    rkyv::Deserialize,
)]
#[rkyv(derive(Debug))]
pub struct InceptionWitnessConfig {
    #[serde(rename = "bt")]
    pub tally: SignatureThreshold,

    #[serde(rename = "b")]
    pub initial_witnesses: Vec<BasicPrefix>,
}

impl Default for InceptionWitnessConfig {
    fn default() -> Self {
        Self {
            tally: SignatureThreshold::Simple(0),
            initial_witnesses: Default::default(),
        }
    }
}

impl From<InceptionWitnessConfig> for WitnessConfig {
    fn from(iwc: InceptionWitnessConfig) -> Self {
        Self {
            tally: iwc.tally,
            witnesses: iwc.initial_witnesses,
        }
    }
}

impl Default for RotationWitnessConfig {
    fn default() -> Self {
        Self {
            tally: SignatureThreshold::Simple(0),
            prune: Default::default(),
            graft: Default::default(),
        }
    }
}