From 6a7cb7287aa7d718c9417aec177c8f9c6254ed4b Mon Sep 17 00:00:00 2001 From: Heiko Schaefer Date: Tue, 7 Sep 2021 13:59:33 +0200 Subject: [PATCH] Remove obsolete FIXME comments (this case is now handled upstream) --- openpgp-card/src/keys.rs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/openpgp-card/src/keys.rs b/openpgp-card/src/keys.rs index 1d39c11..1e63b66 100644 --- a/openpgp-card/src/keys.rs +++ b/openpgp-card/src/keys.rs @@ -301,8 +301,6 @@ fn get_card_algo_rsa( rsa_bits: u16, ) -> Result { // Find suitable algorithm parameters (from card's list of algorithms). - // FIXME: handle "no list available" (older cards?) - // (Current algo parameters of the key slot should be used, then (?)) // Get Algos for this keytype let keytype_algos: Vec<_> = algo_list.get_by_keytype(key_type); @@ -339,8 +337,6 @@ fn check_card_algo_ecc( oid: &[u8], ) -> bool { // Find suitable algorithm parameters (from card's list of algorithms). - // FIXME: handle "no list available" (older cards?) - // (Current algo parameters of the key slot should be used, then (?)) // Get Algos for this keytype let keytype_algos: Vec<_> = algo_list.get_by_keytype(key_type);