Add Saflok and MyKey KDFs

This commit is contained in:
noproto
2023-12-04 16:03:32 -05:00
parent d6fcb04aa8
commit dc25bfb831
3 changed files with 329 additions and 0 deletions

View File

@@ -119,6 +119,24 @@ App(
sources=["plugins/supported_cards/aime.c"],
)
App(
appid="saflok_parser",
apptype=FlipperAppType.PLUGIN,
entry_point="saflok_plugin_ep",
targets=["f7"],
requires=["nfc"],
sources=["plugins/supported_cards/saflok.c"],
)
App(
appid="mykey_parser",
apptype=FlipperAppType.PLUGIN,
entry_point="mykey_plugin_ep",
targets=["f7"],
requires=["nfc"],
sources=["plugins/supported_cards/mykey.c"],
)
App(
appid="nfc_start",
targets=["f7"],