mirror of
https://github.com/hashcat/hashcat.git
synced 2024-11-15 20:39:17 +00:00
Merge branch 'matrix-fix_m07100'
This commit is contained in:
commit
12d6cdb799
@ -41,7 +41,7 @@ __constant u64 k_sha512[80] =
|
||||
SHA512C4c, SHA512C4d, SHA512C4e, SHA512C4f,
|
||||
};
|
||||
|
||||
void sha512_transform_S (const u64 w[16], u64 dgst[8])
|
||||
static void sha512_transform_S (const u64 w[16], u64 dgst[8])
|
||||
{
|
||||
u64 a = dgst[0];
|
||||
u64 b = dgst[1];
|
||||
@ -129,7 +129,7 @@ void sha512_transform_S (const u64 w[16], u64 dgst[8])
|
||||
dgst[7] += h;
|
||||
}
|
||||
|
||||
void hmac_sha512_run_S (const u64 w1[16], const u64 ipad[8], const u64 opad[8], u64 dgst[8])
|
||||
static void hmac_sha512_run_S (const u64 w1[16], const u64 ipad[8], const u64 opad[8], u64 dgst[8])
|
||||
{
|
||||
dgst[0] = ipad[0];
|
||||
dgst[1] = ipad[1];
|
||||
@ -173,7 +173,7 @@ void hmac_sha512_run_S (const u64 w1[16], const u64 ipad[8], const u64 opad[8],
|
||||
sha512_transform_S (w, dgst);
|
||||
}
|
||||
|
||||
void hmac_sha512_init_S (u64 w[16], u64 ipad[8], u64 opad[8])
|
||||
static void hmac_sha512_init_S (u64 w[16], u64 ipad[8], u64 opad[8])
|
||||
{
|
||||
w[ 0] ^= 0x3636363636363636;
|
||||
w[ 1] ^= 0x3636363636363636;
|
||||
@ -232,7 +232,7 @@ void hmac_sha512_init_S (u64 w[16], u64 ipad[8], u64 opad[8])
|
||||
sha512_transform_S (w, opad);
|
||||
}
|
||||
|
||||
void sha512_transform_V (const u64x w[16], u64x dgst[8])
|
||||
static void sha512_transform_V (const u64x w[16], u64x dgst[8])
|
||||
{
|
||||
u64x a = dgst[0];
|
||||
u64x b = dgst[1];
|
||||
@ -320,7 +320,7 @@ void sha512_transform_V (const u64x w[16], u64x dgst[8])
|
||||
dgst[7] += h;
|
||||
}
|
||||
|
||||
void hmac_sha512_run_V (const u64x w1[16], const u64x ipad[8], const u64x opad[8], u64x dgst[8])
|
||||
static void hmac_sha512_run_V (const u64x w1[16], const u64x ipad[8], const u64x opad[8], u64x dgst[8])
|
||||
{
|
||||
dgst[0] = ipad[0];
|
||||
dgst[1] = ipad[1];
|
||||
@ -364,7 +364,7 @@ void hmac_sha512_run_V (const u64x w1[16], const u64x ipad[8], const u64x opad[8
|
||||
sha512_transform_V (w, dgst);
|
||||
}
|
||||
|
||||
void hmac_sha512_run_V_x (const u64x ipad[8], const u64x opad[8], u64x dgst[8])
|
||||
static void hmac_sha512_run_V_x (const u64x ipad[8], const u64x opad[8], u64x dgst[8])
|
||||
{
|
||||
u64x w[16];
|
||||
|
||||
@ -417,7 +417,7 @@ void hmac_sha512_run_V_x (const u64x ipad[8], const u64x opad[8], u64x dgst[8])
|
||||
sha512_transform_V (w, dgst);
|
||||
}
|
||||
|
||||
void hmac_sha512_init_V (u64x w[16], u64x ipad[8], u64x opad[8])
|
||||
static void hmac_sha512_init_V (u64x w[16], u64x ipad[8], u64x opad[8])
|
||||
{
|
||||
w[ 0] ^= 0x3636363636363636;
|
||||
w[ 1] ^= 0x3636363636363636;
|
||||
|
Loading…
Reference in New Issue
Block a user