Returns the path to the CA's certificate.
(&self)
| 1843 | |
| 1844 | /// Returns the path to the CA's certificate. |
| 1845 | pub fn ca_cert_path(&self) -> PathBuf { |
| 1846 | self.dir.path().join("ca.crt") |
| 1847 | } |
| 1848 | |
| 1849 | /// Requests a new intermediate certificate authority. |
| 1850 | pub fn request_ca(&self, name: &str) -> Result<Ca, Box<dyn Error>> { |
no test coverage detected