fix: allow pub access to SelfsignedCert fields

This commit is contained in:
DarkCat09 2024-08-06 11:09:16 +04:00
parent a1ddbed7a9
commit 49a50aecd9
Signed by: DarkCat09
GPG key ID: 0A26CD5B3345D6E3

View file

@ -17,9 +17,9 @@ pub trait SelfsignedCertVerifier: Send + Sync {
}
pub struct SelfsignedCert {
algo: super::fingerprint::Algorithm,
fingerprint: String,
expires: u64,
pub algo: super::fingerprint::Algorithm,
pub fingerprint: String,
pub expires: u64,
}
pub struct CustomCertVerifier {