mirror of
https://github.com/hashcat/hashcat.git
synced 2024-11-15 12:29:35 +00:00
15 lines
307 B
C
15 lines
307 B
C
/**
|
|
* Author......: See docs/credits.txt
|
|
* License.....: MIT
|
|
*/
|
|
|
|
#ifndef _STRAIGHT_H
|
|
#define _STRAIGHT_H
|
|
|
|
#include <string.h>
|
|
|
|
int straight_ctx_init (straight_ctx_t *straight_ctx, const user_options_t *user_options);
|
|
void straight_ctx_destroy (straight_ctx_t *straight_ctx);
|
|
|
|
#endif // _STRAIGHT_H
|