We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bfab68f commit 4c7fb1fCopy full SHA for 4c7fb1f
1 file changed
wolfssl/wolfcrypt/sp_int.h
@@ -387,11 +387,11 @@ extern "C" {
387
/* Non-blocking ECC operation context. */
388
typedef struct sp_ecc_ctx {
389
#ifdef WOLFSSL_SP_521
390
- byte data[66*80]; /* stack data */
+ XALIGNED(4) byte data[66*80]; /* stack data */
391
#elif defined(WOLFSSL_SP_384)
392
- byte data[48*80]; /* stack data */
+ XALIGNED(4) byte data[48*80]; /* stack data */
393
#else
394
- byte data[32*80]; /* stack data */
+ XALIGNED(4) byte data[32*80]; /* stack data */
395
#endif
396
} sp_ecc_ctx_t;
397
0 commit comments