[CRYPTO] api: Get rid of flags argument to setkey
authorHerbert Xu <herbert@gondor.apana.org.au>
Sun, 13 Aug 2006 04:16:39 +0000 (14:16 +1000)
committerHerbert Xu <herbert@gondor.apana.org.au>
Thu, 21 Sep 2006 01:41:02 +0000 (11:41 +1000)
commit560c06ae1ab7c677002ea3b6ac83521bf12ee07d
tree374ed69a7e23ba9d07458d20672aac6ae552ae51
parent25cdbcd9e5d20e431f829cafce48a418830011f4
[CRYPTO] api: Get rid of flags argument to setkey

Now that the tfm is passed directly to setkey instead of the ctx, we no
longer need to pass the &tfm->crt_flags pointer.

This patch also gets rid of a few unnecessary checks on the key length
for ciphers as the cipher layer guarantees that the key length is within
the bounds specified by the algorithm.

Rather than testing dia_setkey every time, this patch does it only once
during crypto_alloc_tfm.  The redundant check from crypto_digest_setkey
is also removed.

Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
24 files changed:
arch/i386/crypto/aes.c
arch/s390/crypto/aes_s390.c
arch/s390/crypto/des_s390.c
arch/x86_64/crypto/aes.c
crypto/aes.c
crypto/anubis.c
crypto/arc4.c
crypto/blowfish.c
crypto/cast5.c
crypto/cast6.c
crypto/cipher.c
crypto/crc32c.c
crypto/crypto_null.c
crypto/des.c
crypto/digest.c
crypto/khazad.c
crypto/michael_mic.c
crypto/serpent.c
crypto/tcrypt.c
crypto/tea.c
crypto/twofish_common.c
drivers/crypto/padlock-aes.c
include/crypto/twofish.h
include/linux/crypto.h