oclHashcat-plus restore file format struct
#6
The struct is here, but note it will change again with oclHashcat v1.00.

Code:
typedef struct
{
  uint32_t  version_bin;
  char      cwd[256];
  uint32_t  argc;
  char      **argv;
  uint32_t  pid;

  #ifdef _LITE
  uint32_t  pw_min;
  uint64_t  pw_skip;
  #endif

  #ifdef _PLUS
  uint32_t  devices_cnt;

  uint32_t  dictpos;
  uint32_t  maskpos;

  uint64_t *pw_off;
  uint64_t *pw_num;
  uint64_t  pw_cur;

  uint32_t  digests_cnt;
  uint32_t  digests_done;
  uint     *digests_shown;

  uint32_t  salts_cnt;
  uint32_t  salts_done;
  uint     *salts_shown;

  float     ms_running;
  #endif

} restore_data_t;


Messages In This Thread
RE: oclHashcat-plus restore file format struct - by atom - 09-05-2013, 02:41 PM