From 2191af7a8e1e3a5bd23d809311b707be93efaaa8 Mon Sep 17 00:00:00 2001 From: jsteube Date: Thu, 13 Jul 2017 11:07:56 +0200 Subject: [PATCH] Fix datatype in sha384_update_vector_utf16le() sha512_update_vector_utf16le() --- OpenCL/inc_hash_sha384.cl | 16 ++++++++-------- OpenCL/inc_hash_sha512.cl | 16 ++++++++-------- 2 files changed, 16 insertions(+), 16 deletions(-) diff --git a/OpenCL/inc_hash_sha384.cl b/OpenCL/inc_hash_sha384.cl index fc2e7ff02..84c961ba1 100644 --- a/OpenCL/inc_hash_sha384.cl +++ b/OpenCL/inc_hash_sha384.cl @@ -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; diff --git a/OpenCL/inc_hash_sha512.cl b/OpenCL/inc_hash_sha512.cl index 34aeef151..dc073157a 100644 --- a/OpenCL/inc_hash_sha512.cl +++ b/OpenCL/inc_hash_sha512.cl @@ -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;