jonesmarvin8 41f34f4ff4 fixes
2026-04-26 20:27:22 -04:00

12 lines
289 B
Python

from ..card_interface import CardInterface
from ..preconditions import require_pin_verified
@require_pin_verified
def remove_key(card: CardInterface) -> None:
'''
Removes the key from the card, returning it to an uninitialized state.
'''
card.send_secure_apdu(ins=0xD3)