diff options
author | Herbert Xu <herbert@gondor.apana.org.au> | 2006-07-14 10:42:27 +1000 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2006-09-21 11:41:03 +1000 |
commit | df89820ebd5bbf4f3c6b5f8ee7d9e983107f6a91 (patch) | |
tree | a782e2662cbdb6c7ad7591f2697d06008048f966 /crypto/cipher.c | |
parent | c907ee76d8456fe1d98f40b5febfc7802a73b784 (diff) | |
download | linux-3.10-df89820ebd5bbf4f3c6b5f8ee7d9e983107f6a91.tar.gz linux-3.10-df89820ebd5bbf4f3c6b5f8ee7d9e983107f6a91.tar.bz2 linux-3.10-df89820ebd5bbf4f3c6b5f8ee7d9e983107f6a91.zip |
[CRYPTO] cipher: Removed special IV checks for ECB
This patch makes IV operations on ECB fail through nocrypt_iv rather than
calling BUG(). This is needed to generalise CBC/ECB using the template
mechanism.
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'crypto/cipher.c')
-rw-r--r-- | crypto/cipher.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/crypto/cipher.c b/crypto/cipher.c index 56406a4a88d..aebc4a2adc8 100644 --- a/crypto/cipher.c +++ b/crypto/cipher.c @@ -399,6 +399,8 @@ int crypto_init_cipher_ops(struct crypto_tfm *tfm) case CRYPTO_TFM_MODE_ECB: ops->cit_encrypt = ecb_encrypt; ops->cit_decrypt = ecb_decrypt; + ops->cit_encrypt_iv = nocrypt_iv; + ops->cit_decrypt_iv = nocrypt_iv; break; case CRYPTO_TFM_MODE_CBC: |