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
use crate::{
decoder::{Decode, Decoder},
encoder::{Encode, Encoder},
MPInt, Result,
};
#[cfg_attr(docsrs, doc(cfg(feature = "alloc")))]
#[derive(Clone, Debug, Eq, PartialEq, PartialOrd, Ord)]
pub struct DsaPublicKey {
pub p: MPInt,
pub q: MPInt,
pub g: MPInt,
pub y: MPInt,
}
impl DsaPublicKey {
pub(super) fn checkint_bytes(&self) -> &[u8] {
self.y.as_bytes()
}
}
impl Decode for DsaPublicKey {
fn decode(decoder: &mut impl Decoder) -> Result<Self> {
let p = MPInt::decode(decoder)?;
let q = MPInt::decode(decoder)?;
let g = MPInt::decode(decoder)?;
let y = MPInt::decode(decoder)?;
Ok(Self { p, q, g, y })
}
}
impl Encode for DsaPublicKey {
fn encoded_len(&self) -> Result<usize> {
Ok(self.p.encoded_len()?
+ self.q.encoded_len()?
+ self.g.encoded_len()?
+ self.y.encoded_len()?)
}
fn encode(&self, encoder: &mut impl Encoder) -> Result<()> {
self.p.encode(encoder)?;
self.q.encode(encoder)?;
self.g.encode(encoder)?;
self.y.encode(encoder)
}
}