From 17ee12566fb73c824b4851811c9f13e8126c45e4 Mon Sep 17 00:00:00 2001 From: Heiko Schaefer Date: Thu, 2 Sep 2021 22:13:15 +0200 Subject: [PATCH] Minor edits to comments --- openpgp-card/src/card_app.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/openpgp-card/src/card_app.rs b/openpgp-card/src/card_app.rs index f8f519c..9839d36 100644 --- a/openpgp-card/src/card_app.rs +++ b/openpgp-card/src/card_app.rs @@ -372,7 +372,7 @@ impl CardApp { /// Decrypt the ciphertext in `dm`, on the card. /// - /// (This is a convenience wrapper around the low-level pso_decipher + /// (This is a wrapper around the low-level pso_decipher /// operation, it builds the required `data` field from `dm`) pub fn decrypt(&mut self, dm: Cryptogram) -> Result, Error> { match dm { @@ -413,9 +413,9 @@ impl CardApp { /// Sign `hash`, on the card. /// - /// (This is a convenience wrapper around the low-level - /// pso_compute_digital_signature operation. It builds the required - /// `data` field from `hash`) + /// (This is a wrapper around the low-level + /// pso_compute_digital_signature operation. + /// It builds the required `data` field from `hash`) pub fn signature_for_hash( &mut self, hash: Hash,