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
79
80
81
82
83
84
85
86
87
88
89
use crate::{AlgorithmIdentifier, Error, Result};
use der::{asn1::BitString, Decodable, Decoder, Encodable, Sequence};
#[cfg(feature = "fingerprint")]
use sha2::{digest, Digest, Sha256};
#[cfg(all(feature = "alloc", feature = "fingerprint"))]
use {
alloc::string::String,
base64ct::{Base64, Encoding},
};
#[derive(Copy, Clone, Debug, Eq, PartialEq)]
pub struct SubjectPublicKeyInfo<'a> {
pub algorithm: AlgorithmIdentifier<'a>,
pub subject_public_key: &'a [u8],
}
impl<'a> SubjectPublicKeyInfo<'a> {
#[cfg(feature = "fingerprint")]
#[cfg_attr(docsrs, doc(cfg(feature = "fingerprint")))]
pub fn fingerprint(&self) -> Result<digest::Output<Sha256>> {
let mut buf = [0u8; 4096];
Ok(Sha256::digest(self.encode_to_slice(&mut buf)?))
}
#[cfg(all(feature = "fingerprint", feature = "alloc"))]
#[cfg_attr(docsrs, doc(cfg(all(feature = "fingerprint", feature = "alloc"))))]
pub fn fingerprint_base64(&self) -> Result<String> {
Ok(Base64::encode_string(self.fingerprint()?.as_slice()))
}
}
impl<'a> Decodable<'a> for SubjectPublicKeyInfo<'a> {
fn decode(decoder: &mut Decoder<'a>) -> der::Result<Self> {
decoder.sequence(|decoder| {
let algorithm = decoder.decode()?;
let subject_public_key = decoder
.bit_string()?
.as_bytes()
.ok_or_else(|| der::Tag::BitString.value_error())?;
Ok(Self {
algorithm,
subject_public_key,
})
})
}
}
impl<'a> Sequence<'a> for SubjectPublicKeyInfo<'a> {
fn fields<F, T>(&self, f: F) -> der::Result<T>
where
F: FnOnce(&[&dyn Encodable]) -> der::Result<T>,
{
f(&[
&self.algorithm,
&BitString::from_bytes(self.subject_public_key)?,
])
}
}
impl<'a> TryFrom<&'a [u8]> for SubjectPublicKeyInfo<'a> {
type Error = Error;
fn try_from(bytes: &'a [u8]) -> Result<Self> {
Ok(Self::from_der(bytes)?)
}
}