1
0
mirror of https://github.com/hashcat/hashcat.git synced 2024-10-31 20:48:57 +00:00

add missing function prototypes for the binary-search-tree-based pot sorting

This commit is contained in:
philsmd 2017-10-25 12:31:17 +02:00
parent 6218573e81
commit 19504d6286
No known key found for this signature in database
GPG Key ID: 4F25D016D9D6A8AF

View File

@ -27,4 +27,8 @@ int potfile_handle_left (hashcat_ctx_t *hashcat_ctx);
void potfile_update_hash (hashcat_ctx_t *hashcat_ctx, hash_t *found, char *line_pw_buf, int line_pw_len);
void potfile_update_hashes (hashcat_ctx_t *hashcat_ctx, hash_t *search, char *line_pw_buf, int line_pw_len, pot_tree_entry_t *tree);
void pot_tree_destroy (pot_tree_entry_t *tree);
int sort_pot_tree_by_hash (const void *v1, const void *v2);
#endif // _POTFILE_H