mirror of
https://github.com/hashcat/hashcat.git
synced 2025-01-22 05:31:11 +00:00
Fix datatype in sha384_update_vector_utf16le() sha512_update_vector_utf16le()
This commit is contained in:
parent
f70da8a04c
commit
2191af7a8e
@ -2118,14 +2118,14 @@ void sha384_update_vector (sha384_ctx_vector_t *ctx, const u32x *w, const int le
|
|||||||
|
|
||||||
void sha384_update_vector_utf16le (sha384_ctx_vector_t *ctx, const u32x *w, const int len)
|
void sha384_update_vector_utf16le (sha384_ctx_vector_t *ctx, const u32x *w, const int len)
|
||||||
{
|
{
|
||||||
u32 w0[4];
|
u32x w0[4];
|
||||||
u32 w1[4];
|
u32x w1[4];
|
||||||
u32 w2[4];
|
u32x w2[4];
|
||||||
u32 w3[4];
|
u32x w3[4];
|
||||||
u32 w4[4];
|
u32x w4[4];
|
||||||
u32 w5[4];
|
u32x w5[4];
|
||||||
u32 w6[4];
|
u32x w6[4];
|
||||||
u32 w7[4];
|
u32x w7[4];
|
||||||
|
|
||||||
int pos1;
|
int pos1;
|
||||||
int pos4;
|
int pos4;
|
||||||
|
@ -2118,14 +2118,14 @@ void sha512_update_vector (sha512_ctx_vector_t *ctx, const u32x *w, const int le
|
|||||||
|
|
||||||
void sha512_update_vector_utf16le (sha512_ctx_vector_t *ctx, const u32x *w, const int len)
|
void sha512_update_vector_utf16le (sha512_ctx_vector_t *ctx, const u32x *w, const int len)
|
||||||
{
|
{
|
||||||
u32 w0[4];
|
u32x w0[4];
|
||||||
u32 w1[4];
|
u32x w1[4];
|
||||||
u32 w2[4];
|
u32x w2[4];
|
||||||
u32 w3[4];
|
u32x w3[4];
|
||||||
u32 w4[4];
|
u32x w4[4];
|
||||||
u32 w5[4];
|
u32x w5[4];
|
||||||
u32 w6[4];
|
u32x w6[4];
|
||||||
u32 w7[4];
|
u32x w7[4];
|
||||||
|
|
||||||
int pos1;
|
int pos1;
|
||||||
int pos4;
|
int pos4;
|
||||||
|
Loading…
Reference in New Issue
Block a user