1
mirror of https://github.com/hashcat/hashcat synced 2024-11-17 08:28:39 +01:00

Fix datatype in sha384_update_vector_utf16le() sha512_update_vector_utf16le()

This commit is contained in:
jsteube 2017-07-13 11:07:56 +02:00
parent f70da8a04c
commit 2191af7a8e
2 changed files with 16 additions and 16 deletions

View File

@ -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)
{
u32 w0[4];
u32 w1[4];
u32 w2[4];
u32 w3[4];
u32 w4[4];
u32 w5[4];
u32 w6[4];
u32 w7[4];
u32x w0[4];
u32x w1[4];
u32x w2[4];
u32x w3[4];
u32x w4[4];
u32x w5[4];
u32x w6[4];
u32x w7[4];
int pos1;
int pos4;

View File

@ -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)
{
u32 w0[4];
u32 w1[4];
u32 w2[4];
u32 w3[4];
u32 w4[4];
u32 w5[4];
u32 w6[4];
u32 w7[4];
u32x w0[4];
u32x w1[4];
u32x w2[4];
u32x w3[4];
u32x w4[4];
u32x w5[4];
u32x w6[4];
u32x w7[4];
int pos1;
int pos4;