From 39e7eaa9cc0b13426ad0a14c9f12e0ca3cd19248 Mon Sep 17 00:00:00 2001 From: Heiko Schaefer Date: Mon, 8 Nov 2021 11:39:14 +0100 Subject: [PATCH] Make pso_compute_digital_signature() and internal_authenticate() public. --- openpgp-card/src/card_app.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/openpgp-card/src/card_app.rs b/openpgp-card/src/card_app.rs index 12227dd..416dfbb 100644 --- a/openpgp-card/src/card_app.rs +++ b/openpgp-card/src/card_app.rs @@ -509,7 +509,7 @@ impl CardApp { /// Run signing operation on the smartcard (low level operation) /// (7.2.10 PSO: COMPUTE DIGITAL SIGNATURE) - fn pso_compute_digital_signature( + pub fn pso_compute_digital_signature( &mut self, data: Vec, ) -> Result, Error> { @@ -541,7 +541,7 @@ impl CardApp { /// Run signing operation on the smartcard (low level operation) /// (7.2.13 INTERNAL AUTHENTICATE) - fn internal_authenticate( + pub fn internal_authenticate( &mut self, data: Vec, ) -> Result, Error> {