2016-09-11 11:42:19 +02:00
|
|
|
/**
|
2016-09-11 22:20:15 +02:00
|
|
|
* Author......: See docs/credits.txt
|
2016-09-11 11:42:19 +02:00
|
|
|
* License.....: MIT
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _HASH_MANAGEMENT_H
|
|
|
|
#define _HASH_MANAGEMENT_H
|
|
|
|
|
2016-09-30 22:52:44 +02:00
|
|
|
int sort_by_digest_p0p1 (const void *v1, const void *v2, void *v3);
|
2016-09-14 19:50:53 +02:00
|
|
|
int sort_by_salt (const void *v1, const void *v2);
|
2016-09-30 22:52:44 +02:00
|
|
|
int sort_by_hash (const void *v1, const void *v2, void *v3);
|
|
|
|
int sort_by_hash_no_salt (const void *v1, const void *v2, void *v3);
|
2016-09-14 19:50:53 +02:00
|
|
|
|
2016-10-09 22:41:55 +02:00
|
|
|
int save_hash (hashcat_ctx_t *hashcat_ctx);
|
2016-09-14 16:07:24 +02:00
|
|
|
|
2016-09-30 22:52:44 +02:00
|
|
|
void check_hash (hashcat_ctx_t *hashcat_ctx, hc_device_param_t *device_param, plain_t *plain);
|
2016-09-14 16:07:24 +02:00
|
|
|
|
2016-10-04 06:35:49 +02:00
|
|
|
int check_cracked (hashcat_ctx_t *hashcat_ctx, hc_device_param_t *device_param, const u32 salt_pos);
|
2016-09-16 17:01:18 +02:00
|
|
|
|
2016-10-06 10:55:14 +02:00
|
|
|
int hashes_init_stage1 (hashcat_ctx_t *hashcat_ctx);
|
|
|
|
int hashes_init_stage2 (hashcat_ctx_t *hashcat_ctx);
|
|
|
|
int hashes_init_stage3 (hashcat_ctx_t *hashcat_ctx);
|
2016-10-18 20:42:34 +02:00
|
|
|
int hashes_init_stage4 (hashcat_ctx_t *hashcat_ctx);
|
2016-09-16 17:01:18 +02:00
|
|
|
|
2017-06-13 19:07:08 +02:00
|
|
|
int hashes_init_selftest (hashcat_ctx_t *hashcat_ctx);
|
|
|
|
|
2016-10-06 10:55:14 +02:00
|
|
|
void hashes_destroy (hashcat_ctx_t *hashcat_ctx);
|
2016-09-14 16:07:24 +02:00
|
|
|
|
2016-10-06 10:55:14 +02:00
|
|
|
void hashes_logger (hashcat_ctx_t *hashcat_ctx);
|
2016-09-23 21:41:05 +02:00
|
|
|
|
2016-09-11 11:42:19 +02:00
|
|
|
#endif // _HASH_MANAGEMENT_H
|