From afc97a7eb8146f1c5e99abab3230216370888c8e Mon Sep 17 00:00:00 2001 From: Gabriele Gristina Date: Sun, 19 Mar 2023 14:43:51 +0100 Subject: [PATCH] Fixed buffer overflow on m31400_a3-pure.cl / aes256_scrt_format_VV() --- OpenCL/m31400_a3-pure.cl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OpenCL/m31400_a3-pure.cl b/OpenCL/m31400_a3-pure.cl index 03f66455c..ed488169d 100644 --- a/OpenCL/m31400_a3-pure.cl +++ b/OpenCL/m31400_a3-pure.cl @@ -135,7 +135,7 @@ DECLSPEC void aes256_scrt_format_VV (PRIVATE_AS u32 *aes_ks, PRIVATE_AS u32x *w, #endif #if VECT_SIZE >= 2 - u32 tmp_w[16]; + u32 tmp_w[64]; u32 tmp_h[8]; u32 tmp_out[4];