diff options
author | Atsushi Nemoto <anemo@mba.ocn.ne.jp> | 2006-04-10 08:42:35 +1000 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2006-06-26 17:34:38 +1000 |
commit | e1147d8f47eb8fef93f98a30858192145137d2b2 (patch) | |
tree | 7e1bc0ab3d263e5bd801900195ab310625d9ab59 /crypto/michael_mic.c | |
parent | d00e708cef16442cabaf23f653baf924f5d66e83 (diff) | |
download | linux-3.10-e1147d8f47eb8fef93f98a30858192145137d2b2.tar.gz linux-3.10-e1147d8f47eb8fef93f98a30858192145137d2b2.tar.bz2 linux-3.10-e1147d8f47eb8fef93f98a30858192145137d2b2.zip |
[CRYPTO] digest: Add alignment handling
Some hash modules load/store data words directly. The digest layer
should pass properly aligned buffer to update()/final() method. This
patch also add cra_alignmask to some hash modules.
Signed-off-by: Atsushi Nemoto <anemo@mba.ocn.ne.jp>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'crypto/michael_mic.c')
-rw-r--r-- | crypto/michael_mic.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/crypto/michael_mic.c b/crypto/michael_mic.c index 4f6ab23e14a..701f859ed76 100644 --- a/crypto/michael_mic.c +++ b/crypto/michael_mic.c @@ -145,6 +145,7 @@ static struct crypto_alg michael_mic_alg = { .cra_blocksize = 8, .cra_ctxsize = sizeof(struct michael_mic_ctx), .cra_module = THIS_MODULE, + .cra_alignmask = 3, .cra_list = LIST_HEAD_INIT(michael_mic_alg.cra_list), .cra_u = { .digest = { .dia_digestsize = 8, |