mirror of
https://github.com/hashcat/hashcat.git
synced 2024-12-16 03:38:19 +00:00
Merge branch 'matrix-fix_m06233'
This commit is contained in:
commit
4a520d3e34
@ -1083,7 +1083,7 @@ __constant u32 Cl[8][256] =
|
|||||||
|
|
||||||
#define BOX(S,n,i) (S)[(n)][(i)]
|
#define BOX(S,n,i) (S)[(n)][(i)]
|
||||||
|
|
||||||
void whirlpool_transform (const u32 w[16], u32 dgst[16], __local u32 (*s_Ch)[256], __local u32 (*s_Cl)[256])
|
static void whirlpool_transform (const u32 w[16], u32 dgst[16], __local u32 (*s_Ch)[256], __local u32 (*s_Cl)[256])
|
||||||
{
|
{
|
||||||
const u32 rch[R + 1] =
|
const u32 rch[R + 1] =
|
||||||
{
|
{
|
||||||
@ -1283,7 +1283,7 @@ void whirlpool_transform (const u32 w[16], u32 dgst[16], __local u32 (*s_Ch)[256
|
|||||||
dgst[15] ^= statel[7] ^ w[15];
|
dgst[15] ^= statel[7] ^ w[15];
|
||||||
}
|
}
|
||||||
|
|
||||||
void hmac_run2 (const u32 w1[16], const u32 w2[16], const u32 ipad[16], const u32 opad[16], u32 dgst[16], __local u32 (*s_Ch)[256], __local u32 (*s_Cl)[256])
|
static void hmac_run2 (const u32 w1[16], const u32 w2[16], const u32 ipad[16], const u32 opad[16], u32 dgst[16], __local u32 (*s_Ch)[256], __local u32 (*s_Cl)[256])
|
||||||
{
|
{
|
||||||
dgst[ 0] = ipad[ 0];
|
dgst[ 0] = ipad[ 0];
|
||||||
dgst[ 1] = ipad[ 1];
|
dgst[ 1] = ipad[ 1];
|
||||||
@ -1363,7 +1363,7 @@ void hmac_run2 (const u32 w1[16], const u32 w2[16], const u32 ipad[16], const u3
|
|||||||
whirlpool_transform (w, dgst, s_Ch, s_Cl);
|
whirlpool_transform (w, dgst, s_Ch, s_Cl);
|
||||||
}
|
}
|
||||||
|
|
||||||
void hmac_init (u32 w[16], u32 ipad[16], u32 opad[16], __local u32 (*s_Ch)[256], __local u32 (*s_Cl)[256])
|
static void hmac_init (u32 w[16], u32 ipad[16], u32 opad[16], __local u32 (*s_Ch)[256], __local u32 (*s_Cl)[256])
|
||||||
{
|
{
|
||||||
w[ 0] ^= 0x36363636;
|
w[ 0] ^= 0x36363636;
|
||||||
w[ 1] ^= 0x36363636;
|
w[ 1] ^= 0x36363636;
|
||||||
@ -1438,7 +1438,7 @@ void hmac_init (u32 w[16], u32 ipad[16], u32 opad[16], __local u32 (*s_Ch)[256],
|
|||||||
whirlpool_transform (w, opad, s_Ch, s_Cl);
|
whirlpool_transform (w, opad, s_Ch, s_Cl);
|
||||||
}
|
}
|
||||||
|
|
||||||
u32 u8add (const u32 a, const u32 b)
|
static u32 u8add (const u32 a, const u32 b)
|
||||||
{
|
{
|
||||||
const u32 a1 = (a >> 0) & 0xff;
|
const u32 a1 = (a >> 0) & 0xff;
|
||||||
const u32 a2 = (a >> 8) & 0xff;
|
const u32 a2 = (a >> 8) & 0xff;
|
||||||
|
Loading…
Reference in New Issue
Block a user