diff options
author | Herbert Xu <herbert@gondor.apana.org.au> | 2009-06-24 13:48:13 +0800 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2009-06-24 13:48:13 +0800 |
commit | 259c5e05c13daaaea039b5bf29a2674701cfd68e (patch) | |
tree | d056969b5e47b5bb2878affe1fe1a9cc03f17f15 /crypto/testmgr.c | |
parent | c9944881acf02b6f25fa62a0441a98b7dc0d7ae6 (diff) | |
download | linux-3.10-259c5e05c13daaaea039b5bf29a2674701cfd68e.tar.gz linux-3.10-259c5e05c13daaaea039b5bf29a2674701cfd68e.tar.bz2 linux-3.10-259c5e05c13daaaea039b5bf29a2674701cfd68e.zip |
crypto: testmgr - Remove hash size check
Until hash test vectors grow longer than 256 bytes, the only
purpose of the check is to generate a gcc warning.
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'crypto/testmgr.c')
-rw-r--r-- | crypto/testmgr.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/crypto/testmgr.c b/crypto/testmgr.c index e9e9d84293b..f9bea9d989f 100644 --- a/crypto/testmgr.c +++ b/crypto/testmgr.c @@ -190,10 +190,6 @@ static int test_hash(struct crypto_ahash *tfm, struct hash_testvec *template, hash_buff = xbuf[0]; - ret = -EINVAL; - if (WARN_ON(template[i].psize > PAGE_SIZE)) - goto out; - memcpy(hash_buff, template[i].plaintext, template[i].psize); sg_init_one(&sg[0], hash_buff, template[i].psize); |