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> {