commit | f16743e0c71a5d2811273b77638ff3a069aed1e2 | [log] [tgz] |
---|---|---|
author | Eric Biggers <ebiggers@google.com> | Mon Oct 10 10:15:15 2016 -0700 |
committer | Herbert Xu <herbert@gondor.apana.org.au> | Fri Oct 21 11:03:42 2016 +0800 |
tree | 31757857e2d60294a7c8330d2d46575b478bcdad | |
parent | 48ee41bf5ba052364f78781e9082a510fbcd104a [diff] |
crypto: cmac - fix alignment of 'consts' The per-transform 'consts' array is accessed as __be64 in crypto_cmac_digest_setkey() but was only guaranteed to be aligned to __alignof__(long). Fix this by aligning it to __alignof__(__be64). Signed-off-by: Eric Biggers <ebiggers@google.com> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>