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
use crate::{
base64::{self, Decode},
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 Decode for DsaPublicKey {
fn decode(decoder: &mut base64::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 })
}
}