mirror of
https://github.com/hashcat/hashcat.git
synced 2025-03-06 01:56:06 +00:00
18 lines
361 B
C
18 lines
361 B
C
/**
|
|
* Author......: See docs/credits.txt
|
|
* License.....: MIT
|
|
*/
|
|
|
|
#ifndef _HASH_MANAGEMENT_H
|
|
#define _HASH_MANAGEMENT_H
|
|
|
|
#define USERNAME 0
|
|
|
|
void save_hash ();
|
|
|
|
void check_hash (hc_device_param_t *device_param, plain_t *plain);
|
|
|
|
int check_cracked (hc_device_param_t *device_param, const uint salt_pos, hashconfig_t *hashconfig);
|
|
|
|
#endif // _HASH_MANAGEMENT_H
|