Set CAA record for the domain.
(&self)
| 236 | |
| 237 | /// Set CAA record for the domain. |
| 238 | pub async fn set_caa(&self) -> Result<()> { |
| 239 | self.acme_client |
| 240 | .set_caa_records(&self.config.cert_subject_alt_names) |
| 241 | .await |
| 242 | } |
| 243 | } |
| 244 | |
| 245 | pub fn read_pubkey(cert_pem: &str) -> Result<Vec<u8>> { |