1
0
mirror of https://github.com/hashcat/hashcat.git synced 2024-11-26 01:50:10 +00:00

Fix unoptimized Kerberos 5 TGS-REP etype 23 kernel for use on macOS

This commit is contained in:
jsteube 2018-01-31 21:28:46 +01:00
parent 019ed0de6e
commit 13a79cf942
3 changed files with 3 additions and 3 deletions

View File

@ -86,7 +86,7 @@ void rc4_init_16 (SCR_TYPE RC4_KEY *rc4_key, const u32 data[4])
}
}
u8 rc4_next_16 (SCR_TYPE RC4_KEY *rc4_key, u8 i, u8 j, __global const u32 in[4], u32 out[4])
u8 rc4_next_16 (SCR_TYPE RC4_KEY *rc4_key, u8 i, u8 j, __global u32 *in, u32 out[4])
{
#ifdef _unroll
#pragma unroll

View File

@ -84,7 +84,7 @@ void rc4_init_16 (SCR_TYPE RC4_KEY *rc4_key, const u32 data[4])
}
}
u8 rc4_next_16 (SCR_TYPE RC4_KEY *rc4_key, u8 i, u8 j, __global const u32 in[4], u32 out[4])
u8 rc4_next_16 (SCR_TYPE RC4_KEY *rc4_key, u8 i, u8 j, __global u32 *in, u32 out[4])
{
#ifdef _unroll
#pragma unroll

View File

@ -84,7 +84,7 @@ void rc4_init_16 (SCR_TYPE RC4_KEY *rc4_key, const u32 data[4])
}
}
u8 rc4_next_16 (SCR_TYPE RC4_KEY *rc4_key, u8 i, u8 j, __global const u32 in[4], u32 out[4])
u8 rc4_next_16 (SCR_TYPE RC4_KEY *rc4_key, u8 i, u8 j, __global u32 *in, u32 out[4])
{
#ifdef _unroll
#pragma unroll