1
mirror of https://github.com/hashcat/hashcat synced 2024-11-28 05:21:38 +01:00
hashcat/include/rp_cpu.h

19 lines
398 B
C
Raw Normal View History

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