(path: &Path, der: &[u8])
| 415 | } |
| 416 | |
| 417 | fn write_pem_cert(path: &Path, der: &[u8]) -> crate::Result<()> { |
| 418 | super::pem_io::write_pem_cert(path, der).map_err(|e| crate::Error::Config { |
| 419 | detail: format!("write {}: {e}", path.display()), |
| 420 | }) |
| 421 | } |
| 422 | |
| 423 | fn write_pem_private_key(path: &Path, der: &[u8]) -> crate::Result<()> { |
| 424 | super::pem_io::write_pem_private_key(path, der).map_err(|e| crate::Error::Config { |
no outgoing calls
no test coverage detected