(&self)
| 412 | } |
| 413 | |
| 414 | fn tls_files(&self) -> [&Path; 6] { |
| 415 | [ |
| 416 | &self.ca_crt, |
| 417 | &self.ca_key, |
| 418 | &self.server_crt, |
| 419 | &self.server_key, |
| 420 | &self.client_crt, |
| 421 | &self.client_key, |
| 422 | ] |
| 423 | } |
| 424 | |
| 425 | fn jwt_files(&self) -> [&Path; 3] { |
| 426 | [&self.jwt_signing, &self.jwt_public, &self.jwt_kid] |