diff options
| author | Jussi Kivilinna <jussi.kivilinna@mbnet.fi> | 2012-06-12 16:52:04 +0800 | 
|---|---|---|
| committer | Herbert Xu <herbert@gondor.apana.org.au> | 2012-06-14 10:07:20 +0800 | 
| commit | 31b4cd2907322bd56e4090168e4ce8f8dcd17820 (patch) | |
| tree | f89d30582c160ae91ef177f927c8cc8c59e6e8c5 /crypto/tcrypt.c | |
| parent | d691af000274ae9658695c2a63a76b30890a8983 (diff) | |
| download | olio-linux-3.10-31b4cd2907322bd56e4090168e4ce8f8dcd17820.tar.xz olio-linux-3.10-31b4cd2907322bd56e4090168e4ce8f8dcd17820.zip  | |
crypto: testmgr - add ecb(arc4) speed tests
Signed-off-by: Jussi Kivilinna <jussi.kivilinna@mbnet.fi>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'crypto/tcrypt.c')
| -rw-r--r-- | crypto/tcrypt.c | 10 | 
1 files changed, 10 insertions, 0 deletions
diff --git a/crypto/tcrypt.c b/crypto/tcrypt.c index 2af879786e7..58ad4fe5d20 100644 --- a/crypto/tcrypt.c +++ b/crypto/tcrypt.c @@ -1342,6 +1342,11 @@ static int do_test(int m)  				  speed_template_32_64);  		break; +	case 208: +		test_cipher_speed("ecb(arc4)", ENCRYPT, sec, NULL, 0, +				  speed_template_8); +		break; +  	case 300:  		/* fall through */ @@ -1589,6 +1594,11 @@ static int do_test(int m)  				   speed_template_32_48_64);  		break; +	case 505: +		test_acipher_speed("ecb(arc4)", ENCRYPT, sec, NULL, 0, +				   speed_template_8); +		break; +  	case 1000:  		test_available();  		break;  |