mirror of
https://github.com/hashcat/hashcat.git
synced 2025-01-22 13:40:56 +00:00
Fix build failure for -m 13100 on Apple Platform
This commit is contained in:
parent
8a448fe9e2
commit
c2a32eddb3
@ -1,6 +1,7 @@
|
||||
/**
|
||||
* Authors......: Jens Steube <jens.steube@gmail.com>
|
||||
* Authors......: Fist0urs <eddy.maaalou@gmail.com>
|
||||
* Fist0urs <eddy.maaalou@gmail.com>
|
||||
* Gabriele Gristina <matrix@hashcat.net>
|
||||
*
|
||||
* License.....: MIT
|
||||
*/
|
||||
@ -89,7 +90,7 @@ static void rc4_init_16 (__local RC4_KEY *rc4_key, const u32 data[4])
|
||||
}
|
||||
}
|
||||
|
||||
static u8 rc4_next_16 (__local RC4_KEY *rc4_key, u8 i, u8 j, __global u32 in[4], u32 out[4])
|
||||
static u8 rc4_next_16 (__local RC4_KEY *rc4_key, u8 i, u8 j, __global u32 *in, u32 out[4])
|
||||
{
|
||||
#pragma unroll
|
||||
for (u32 k = 0; k < 4; k++)
|
||||
|
@ -1,6 +1,7 @@
|
||||
/**
|
||||
* Authors......: Jens Steube <jens.steube@gmail.com>
|
||||
* Authors......: Fist0urs <eddy.maaalou@gmail.com>
|
||||
* Fist0urs <eddy.maaalou@gmail.com>
|
||||
* Gabriele Gristina <matrix@hashcat.net>
|
||||
*
|
||||
* License.....: MIT
|
||||
*/
|
||||
@ -87,7 +88,7 @@ static void rc4_init_16 (__local RC4_KEY *rc4_key, const u32 data[4])
|
||||
}
|
||||
}
|
||||
|
||||
static u8 rc4_next_16 (__local RC4_KEY *rc4_key, u8 i, u8 j, __global u32 in[4], u32 out[4])
|
||||
static u8 rc4_next_16 (__local RC4_KEY *rc4_key, u8 i, u8 j, __global u32 *in, u32 out[4])
|
||||
{
|
||||
#pragma unroll
|
||||
for (u32 k = 0; k < 4; k++)
|
||||
|
@ -1,6 +1,7 @@
|
||||
/**
|
||||
* Authors......: Jens Steube <jens.steube@gmail.com>
|
||||
* Authors......: Fist0urs <eddy.maaalou@gmail.com>
|
||||
* Fist0urs <eddy.maaalou@gmail.com>
|
||||
* Gabriele Gristina <matrix@hashcat.net>
|
||||
*
|
||||
* License.....: MIT
|
||||
*/
|
||||
@ -87,7 +88,7 @@ static void rc4_init_16 (__local RC4_KEY *rc4_key, const u32 data[4])
|
||||
}
|
||||
}
|
||||
|
||||
static u8 rc4_next_16 (__local RC4_KEY *rc4_key, u8 i, u8 j, __global u32 in[4], u32 out[4])
|
||||
static u8 rc4_next_16 (__local RC4_KEY *rc4_key, u8 i, u8 j, __global u32 *in, u32 out[4])
|
||||
{
|
||||
#pragma unroll
|
||||
for (u32 k = 0; k < 4; k++)
|
||||
|
Loading…
Reference in New Issue
Block a user