summaryrefslogtreecommitdiff
path: root/crypto/authenc.c
diff options
context:
space:
mode:
authorHerbert Xu <herbert@gondor.apana.org.au>2007-12-10 10:54:44 +0800
committerHerbert Xu <herbert@gondor.apana.org.au>2008-01-11 08:16:37 +1100
commitde34b3a0c2a0ab48fa600e3a18e00a77d8347a51 (patch)
treef85c8b55a6f66fc968bfeb886c1e138e0fa1929c /crypto/authenc.c
parent11ebc95d6fb2a0db6c7ff28bacac6f2a01db875d (diff)
downloadlinux-crypto-de34b3a0c2a0ab48fa600e3a18e00a77d8347a51.tar.gz
linux-crypto-de34b3a0c2a0ab48fa600e3a18e00a77d8347a51.zip
[CRYPTO] authenc: Fix typo in ivsize
The ivsize should be fetched from ablkcipher, not blkcipher. Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to '')
-rw-r--r--crypto/authenc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/authenc.c b/crypto/authenc.c
index fbbc2b50..80d9d0b1 100644
--- 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_ablkcipher.ivsize;
inst->alg.cra_aead.maxauthsize = auth->cra_type == &crypto_hash_type ?
auth->cra_hash.digestsize :
auth->cra_digest.dia_digestsize;