From 39df280d70898f4605ef547f98831b695a30bcb5 Mon Sep 17 00:00:00 2001 From: Heiko Schaefer Date: Thu, 16 Sep 2021 02:05:28 +0200 Subject: [PATCH] Fix comment type --- openpgp-card-sequoia/src/decryptor.rs | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/openpgp-card-sequoia/src/decryptor.rs b/openpgp-card-sequoia/src/decryptor.rs index 8b92a75..46df862 100644 --- a/openpgp-card-sequoia/src/decryptor.rs +++ b/openpgp-card-sequoia/src/decryptor.rs @@ -84,12 +84,12 @@ impl<'a> crypto::Decryptor for CardDecryptor<'a> { ciphertext: &mpi::Ciphertext, _plaintext_len: Option, ) -> openpgp::Result { - /// Delegate a decryption operation to the OpenPGP card. - /// - /// This fn prepares the data structures that openpgp-card needs to - /// perform the decryption operation. - /// - /// (7.2.11 PSO: DECIPHER) + // Delegate a decryption operation to the OpenPGP card. + // + // This fn prepares the data structures that openpgp-card needs to + // perform the decryption operation. + // + // (7.2.11 PSO: DECIPHER) match (ciphertext, self.public.mpis()) { (mpi::Ciphertext::RSA { c: ct }, mpi::PublicKey::RSA { .. }) => { let dm = Cryptogram::RSA(ct.value());