+int usage_hf_iclass_reader(void) {
+ PrintAndLog("HELP : Act as a Iclass reader:\n");
+ PrintAndLog("Usage: hf iclass reader [h] [1]\n");
+ PrintAndLog("Options:");
+ PrintAndLog(" h This help text");
+ PrintAndLog(" 1 read only 1 tag");
+ PrintAndLog("Samples:");
+ PrintAndLog(" hf iclass reader 1");
+ return 0;
+}
+int usage_hf_iclass_replay(void){
+ PrintAndLog("HELP: Replay a collected mac message");
+ PrintAndLog("Usage: hf iclass replay [h] <mac>");
+ PrintAndLog("Options:");
+ PrintAndLog(" h This help text");
+ PrintAndLog(" <mac> Mac bytes to replay (8 hexsymbols)");
+ PrintAndLog("Samples:");
+ PrintAndLog(" hf iclass replay 00112233");
+ return 0;
+}
+int usage_hf_iclass_snoop(void){
+ PrintAndLog("HELP: Snoops the communication between reader and tag");
+ PrintAndLog("Usage: hf iclass snoop [h]");
+ PrintAndLog("Samples:");
+ PrintAndLog(" hf iclass snoop");
+ return 0;
+}