projects
/
GitHub
/
moto-9609
/
android_kernel_motorola_exynos9610.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2d74d40
)
[CRYPTO] authenc: Fix typo in ivsize
author
Herbert Xu
<herbert@gondor.apana.org.au>
Mon, 10 Dec 2007 02:54:44 +0000
(10:54 +0800)
committer
Herbert Xu
<herbert@gondor.apana.org.au>
Thu, 10 Jan 2008 21:16:37 +0000
(08:16 +1100)
The ivsize should be fetched from ablkcipher, not blkcipher.
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
crypto/authenc.c
patch
|
blob
|
blame
|
history
diff --git
a/crypto/authenc.c
b/crypto/authenc.c
index fbbc2b505a21579dd8907c267f41638294770291..80d9d0b18c13c1dbbe3ba4f85c08d2b332e24c01 100644
(file)
--- a/
crypto/authenc.c
+++ b/
crypto/authenc.c
@@
-333,7
+333,7
@@
static struct crypto_instance *crypto_authenc_alloc(struct rtattr **tb)
inst->alg.cra_alignmask = auth->cra_alignmask | enc->cra_alignmask;
inst->alg.cra_type = &crypto_aead_type;
- inst->alg.cra_aead.ivsize = enc->cra_blkcipher.ivsize;
+ inst->alg.cra_aead.ivsize = enc->cra_
a
blkcipher.ivsize;
inst->alg.cra_aead.maxauthsize = auth->cra_type == &crypto_hash_type ?
auth->cra_hash.digestsize :
auth->cra_digest.dia_digestsize;