blob: 4a980c64f10b9bc953598163fdd6ebbabb1a4c47 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
use crate::psr::log::logger_interface::LoggerInterface;
#[derive(Debug)]
pub struct CaBundle;
impl CaBundle {
pub fn is_openssl_parse_safe() -> bool {
todo!()
}
pub fn get_system_ca_root_bundle_path(logger: Option<&dyn LoggerInterface>) -> String {
todo!()
}
pub fn validate_ca_file(ca_file: &str, logger: Option<&dyn LoggerInterface>) -> bool {
todo!()
}
pub fn get_bundled_ca_bundle_path() -> String {
todo!()
}
}
|