pub fn get_csm_root_cert_content(file_path: &str) -> Result<Vec<u8>, MantaError>Expand description
Read the root CA certificate from file_path, falling
back to the default config directory if the path is
relative.
ยงErrors
MantaError::NotFoundif neither the literal nor the config-directory-relative path resolves to a readable file.MantaError::IoErrorif a candidate file opens but cannot be read to completion.