From 3162a20d1b402475a2b93b5e1949f3bcbf2e6042 Mon Sep 17 00:00:00 2001 From: CBAI <7985170+carljbai@users.noreply.github.com> Date: Mon, 7 Aug 2023 17:08:35 -0400 Subject: [PATCH] default decryption backend --- libpkpass/crypto.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libpkpass/crypto.py b/libpkpass/crypto.py index cc6552f..662a87a 100755 --- a/libpkpass/crypto.py +++ b/libpkpass/crypto.py @@ -120,7 +120,7 @@ def print_all_slots(slot_info, color, theme_map): def pk_decrypt_string( - ciphertext_string, ciphertext_derived_key, identity, passphrase, SCBackend, card_slot=None + ciphertext_string, ciphertext_derived_key, identity, passphrase, SCBackend="opensc", card_slot=None ): #################################################################### """Decrypt a base64 encoded string for the provided identity"""