Fix m 60 a 0 by making modified variable non-const
[hashcat.git] / include / rp_kernel_on_cpu.h
1 /**
2 * Author......: Jens Steube <jens.steube@gmail.com>
3 * License.....: MIT
4 */
5
6 #ifndef RP_CPU_H
7 #define RP_CPU_H
8
9 #define swap_workaround(n) __builtin_bswap32(n)
10
11 #include "common.h"
12 #include "inc_rp.h"
13
14 u32 apply_rule (const u32 name, const u32 p0, const u32 p1, u32 buf0[4], u32 buf1[4], const u32 in_len);
15 u32 apply_rules (u32 *cmds, u32 buf0[4], u32 buf1[4], const u32 len);
16
17 #endif