1
0
mirror of https://github.com/hashcat/hashcat.git synced 2024-10-10 01:49:01 +00:00
hashcat/include/rp_cpu.h

19 lines
380 B
C
Raw Normal View History

2015-12-04 14:47:52 +00:00
/**
* Author......: See docs/credits.txt
2015-12-04 14:47:52 +00:00
* License.....: MIT
*/
#ifndef _RP_CPU_H
#define _RP_CPU_H
2016-09-06 13:28:56 +00:00
#include <string.h>
2016-09-24 09:08:35 +00:00
#define RULE_RC_SYNTAX_ERROR -1
#define RULE_RC_REJECT_ERROR -2
2016-09-06 13:28:56 +00:00
int _old_apply_rule (char *rule, int rule_len, char in[BLOCK_SIZE], int in_len, char out[BLOCK_SIZE]);
int run_rule_engine (const int rule_len, const char *rule_buf);
#endif // _RP_CPU_H