]> www.wagner.pp.ru Git - openssl-gost/engine.git/commitdiff
We cannot ensure ALIGN(16) of externally allocated data
authorDmitry Belyavskiy <beldmit@gmail.com>
Fri, 1 Mar 2019 20:36:30 +0000 (23:36 +0300)
committerDmitry Belyavskiy <beldmit@gmail.com>
Fri, 1 Mar 2019 20:36:30 +0000 (23:36 +0300)
gosthash2012.h

index 021b7d4cee8effd71fe790ebc161a7ccdda27789..0556a5330a83996a3fc54c4a07915647c891470f 100644 (file)
@@ -48,9 +48,8 @@ typedef union uint512_u {
 #include "gosthash2012_precalc.h"
 
 /* GOST R 34.11-2012 hash context */
-ALIGN(16)
 typedef struct gost2012_hash_ctx {
-    ALIGN(16) unsigned char buffer[64];
+    unsigned char buffer[64];
     union uint512_u hash;
     union uint512_u h;
     union uint512_u N;