fix: allow pub access to SelfsignedCert fields
This commit is contained in:
parent
a1ddbed7a9
commit
49a50aecd9
1 changed files with 3 additions and 3 deletions
|
@ -17,9 +17,9 @@ pub trait SelfsignedCertVerifier: Send + Sync {
|
||||||
}
|
}
|
||||||
|
|
||||||
pub struct SelfsignedCert {
|
pub struct SelfsignedCert {
|
||||||
algo: super::fingerprint::Algorithm,
|
pub algo: super::fingerprint::Algorithm,
|
||||||
fingerprint: String,
|
pub fingerprint: String,
|
||||||
expires: u64,
|
pub expires: u64,
|
||||||
}
|
}
|
||||||
|
|
||||||
pub struct CustomCertVerifier {
|
pub struct CustomCertVerifier {
|
||||||
|
|
Loading…
Reference in a new issue