- local cmdNestedString = 'hf mf nested 1 0 A %s d'
- local cmdDumpString = 'hf mf dump'
- --core.console(cmdNestedString.format(keyA) )
- --core.console(cmdDumpString)
+ print('Trying to find other keys. ')
+ --core.console( ('hf mf nested 1 0 A %s d'):format(keyA) )
+
+ -- Reading found keys file
+ local infile = io.open(input, "rb")
+ if infile == nil then
+ return oops('Could not read file ', input)
+ end
+ local akeys = readdumpkeys(infile):sub(0,12*16)