summaryrefslogtreecommitdiff
path: root/openssl/src/cms.rs
diff options
context:
space:
mode:
Diffstat (limited to 'openssl/src/cms.rs')
-rw-r--r--openssl/src/cms.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/openssl/src/cms.rs b/openssl/src/cms.rs
index 3d560cec..dbb7e717 100644
--- a/openssl/src/cms.rs
+++ b/openssl/src/cms.rs
@@ -102,6 +102,7 @@ impl CmsContentInfoRef {
/// See [`CMS_decrypt`] for more information.
///
/// [`CMS_decrypt`]: https://www.openssl.org/docs/man1.1.0/crypto/CMS_decrypt.html
+ // FIXME merge into decrypt
pub fn decrypt_without_cert_check<T>(&self, pkey: &PKeyRef<T>) -> Result<Vec<u8>, ErrorStack>
where
T: HasPrivate,