mirror of
https://github.com/hashcat/hashcat.git
synced 2024-11-01 13:09:11 +00:00
14 lines
388 B
C
14 lines
388 B
C
/**
|
|
* Author......: See docs/credits.txt
|
|
* License.....: MIT
|
|
*/
|
|
|
|
#ifndef _RP_KERNEL_ON_CPU_OPTIMIZED_H
|
|
#define _RP_KERNEL_ON_CPU_OPTIMIZED_H
|
|
|
|
u32 apply_rule_optimized (const u32 name, const u32 p0, const u32 p1, u32 buf0[4], u32 buf1[4], const u32 in_len);
|
|
|
|
u32 apply_rules_optimized (const u32 *cmds, u32 buf0[4], u32 buf1[4], const u32 len);
|
|
|
|
#endif // _RP_KERNEL_ON_CPU_OPTIMIZED_H
|