2016-09-11 09:42:19 +00:00
|
|
|
/**
|
2016-09-11 20:20:15 +00:00
|
|
|
* Author......: See docs/credits.txt
|
2016-09-11 09:42:19 +00:00
|
|
|
* License.....: MIT
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _HASH_MANAGEMENT_H
|
|
|
|
#define _HASH_MANAGEMENT_H
|
|
|
|
|
2016-09-14 17:50:53 +00:00
|
|
|
int sort_by_digest_p0p1 (const void *v1, const void *v2);
|
|
|
|
int sort_by_salt (const void *v1, const void *v2);
|
|
|
|
int sort_by_hash (const void *v1, const void *v2);
|
|
|
|
int sort_by_hash_no_salt (const void *v1, const void *v2);
|
|
|
|
|
2016-09-22 09:56:06 +00:00
|
|
|
void save_hash (const user_options_t *user_options, const hashconfig_t *hashconfig, const hashes_t *hashes);
|
2016-09-14 14:07:24 +00:00
|
|
|
|
2016-09-27 16:32:09 +00:00
|
|
|
void check_hash (opencl_ctx_t *opencl_ctx, hc_device_param_t *device_param, const user_options_t *user_options, const user_options_extra_t *user_options_extra, const straight_ctx_t *straight_ctx, const combinator_ctx_t *combinator_ctx, plain_t *plain);
|
2016-09-14 14:07:24 +00:00
|
|
|
|
2016-09-29 21:25:29 +00:00
|
|
|
int check_cracked (opencl_ctx_t *opencl_ctx, hc_device_param_t *device_param, const user_options_t *user_options, const user_options_extra_t *user_options_extra, const straight_ctx_t *straight_ctx, const combinator_ctx_t *combinator_ctx, hashconfig_t *hashconfig, hashes_t *hashes, cpt_ctx_t *cpt_ctx, status_ctx_t *status_ctx, const uint salt_pos);
|
2016-09-16 15:01:18 +00:00
|
|
|
|
2016-09-21 14:07:49 +00:00
|
|
|
int hashes_init_stage1 (hashes_t *hashes, const hashconfig_t *hashconfig, potfile_ctx_t *potfile_ctx, outfile_ctx_t *outfile_ctx, user_options_t *user_options, char *hash_or_file);
|
2016-09-29 21:25:29 +00:00
|
|
|
int hashes_init_stage2 (hashes_t *hashes, const hashconfig_t *hashconfig, user_options_t *user_options, status_ctx_t *status_ctx);
|
2016-09-23 19:41:05 +00:00
|
|
|
int hashes_init_stage3 (hashes_t *hashes, hashconfig_t *hashconfig, user_options_t *user_options);
|
2016-09-16 15:01:18 +00:00
|
|
|
|
|
|
|
void hashes_destroy (hashes_t *hashes);
|
2016-09-14 14:07:24 +00:00
|
|
|
|
2016-09-23 19:41:05 +00:00
|
|
|
void hashes_logger (const hashes_t *hashes, const logfile_ctx_t *logfile_ctx);
|
|
|
|
|
2016-09-11 09:42:19 +00:00
|
|
|
#endif // _HASH_MANAGEMENT_H
|