Skip to content

Commit

Permalink
cleanup naming
Browse files Browse the repository at this point in the history
  • Loading branch information
oscartbeaumont committed May 21, 2024
1 parent 648473a commit b0e10ed
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions rcgen/src/issuer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,13 @@ impl Issuer {
}

/// TODO
pub fn pem(&self) -> String {
todo!();
pub fn cert_pem(&self) -> String {
todo!("required for `rustls-cert-gen`");
}

/// TODO
pub fn key_pem(&self) -> String {
todo!("seems a fitting complement to `Self::cert_pem`");
}

/// TODO
Expand Down

0 comments on commit b0e10ed

Please sign in to comment.