[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>
Showing
- arch/i386/crypto/aes.c 2 additions, 1 deletionarch/i386/crypto/aes.c
- arch/s390/crypto/aes_s390.c 2 additions, 1 deletionarch/s390/crypto/aes_s390.c
- arch/s390/crypto/des_s390.c 8 additions, 5 deletionsarch/s390/crypto/des_s390.c
- arch/x86_64/crypto/aes.c 3 additions, 2 deletionsarch/x86_64/crypto/aes.c
- crypto/aes.c 3 additions, 2 deletionscrypto/aes.c
- crypto/anubis.c 2 additions, 1 deletioncrypto/anubis.c
- crypto/arc4.c 1 addition, 1 deletioncrypto/arc4.c
- crypto/blowfish.c 1 addition, 2 deletionscrypto/blowfish.c
- crypto/cast5.c 1 addition, 7 deletionscrypto/cast5.c
- crypto/cast6.c 3 additions, 2 deletionscrypto/cast6.c
- crypto/cipher.c 2 additions, 2 deletionscrypto/cipher.c
- crypto/crc32c.c 2 additions, 3 deletionscrypto/crc32c.c
- crypto/crypto_null.c 1 addition, 1 deletioncrypto/crypto_null.c
- crypto/des.c 4 additions, 2 deletionscrypto/des.c
- crypto/digest.c 10 additions, 5 deletionscrypto/digest.c
- crypto/khazad.c 1 addition, 7 deletionscrypto/khazad.c
- crypto/michael_mic.c 2 additions, 3 deletionscrypto/michael_mic.c
- crypto/serpent.c 3 additions, 16 deletionscrypto/serpent.c
- crypto/tcrypt.c 1 addition, 4 deletionscrypto/tcrypt.c
- crypto/tea.c 2 additions, 14 deletionscrypto/tea.c
Please register or sign in to comment