RFC7468 specifies a PEM encoding of ContentInfo from RFC 5652, with a label of "CMS". Accordingly, it would be helpful if cms::content_info::ContentInfo could implement PemLabel so that it can be used with EncodePem::to_pemand DecodePem::from_pem.
impl der::pem::PemLabel for ContentInfo {
const PEM_LABEL: &str = "CMS";
}
RFC7468 specifies a PEM encoding of
ContentInfofrom RFC 5652, with a label of "CMS". Accordingly, it would be helpful ifcms::content_info::ContentInfocould implementPemLabelso that it can be used withEncodePem::to_pemandDecodePem::from_pem.