diff --git a/src/lib.rs b/src/lib.rs index 14f21ec..af26aad 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -274,6 +274,9 @@ impl<'a> From> for CertificateRevocationListDer<'a> { /// Certificates are identified in PEM context as `CERTIFICATE` and when stored in a /// file usually use a `.pem`, `.cer` or `.crt` extension. For more on PEM files, refer to the /// crate documentation. +/// +/// This type is available as either `rustls_pki_types::CertificateDer` or re-exported as +/// `rustls::pki_types::CertificateDer`. #[derive(Clone, Debug, PartialEq, Eq)] pub struct CertificateDer<'a>(Der<'a>);