2016-09-30 20:52:44 +00:00
|
|
|
/**
|
|
|
|
* Author......: See docs/credits.txt
|
|
|
|
* License.....: MIT
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _HASHCAT_H
|
|
|
|
#define _HASHCAT_H
|
|
|
|
|
2016-10-12 12:56:53 +00:00
|
|
|
int hashcat (hashcat_ctx_t *hashcat_ctx, char *install_folder, char *shared_folder, int argc, char **argv, const int comptime);
|
2016-10-02 23:27:55 +00:00
|
|
|
|
2016-10-12 12:56:53 +00:00
|
|
|
int hashcat_ctx_init (hashcat_ctx_t *hashcat_ctx, void (*event) (const u32, struct hashcat_ctx *, const void *, const size_t));
|
2016-10-02 23:27:55 +00:00
|
|
|
void hashcat_ctx_destroy (hashcat_ctx_t *hashcat_ctx);
|
2016-09-30 20:52:44 +00:00
|
|
|
|
|
|
|
#endif // _HASHCAT_H
|