From a42131876f3569c598cfd807e5dfb441bb5f96be Mon Sep 17 00:00:00 2001 From: Pol Henarejos Date: Thu, 27 Oct 2022 20:11:12 +0200 Subject: [PATCH] Adding disable secure key. Signed-off-by: Pol Henarejos --- tools/pico-fido-tool.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/pico-fido-tool.py b/tools/pico-fido-tool.py index 119803c..35362fc 100644 --- a/tools/pico-fido-tool.py +++ b/tools/pico-fido-tool.py @@ -141,7 +141,6 @@ class VendorConfig(Config): ) - def parse_args(): parser = argparse.ArgumentParser() subparser = parser.add_subparsers(title="commands", dest="command") @@ -157,7 +156,8 @@ def secure(dev, args): vcfg.enable_device_aut() elif (args.subcommand == 'unlock'): vcfg.unlock_device() - + elif (args.subcommand == 'disable'): + vcfg.disable_device_aut() def main(args): print('Pico Fido Tool v1.0')