mirror of
				git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
				synced 2025-10-31 16:54:21 +00:00 
			
		
		
		
	crypto: tcrypt - fix ghash-generic speed test
ghash is a keyed hash algorithm, thus setkey needs to be called.
Otherwise the following error occurs:
$ modprobe tcrypt mode=318 sec=1
testing speed of async ghash-generic (ghash-generic)
tcrypt: test  0 (   16 byte blocks,   16 bytes per update,   1 updates):
tcrypt: hashing failed ret=-126
Cc: <stable@vger.kernel.org> # 4.6+
Fixes: 0660511c0b ("crypto: tcrypt - Use ahash")
Tested-by: Franck Lenormand <franck.lenormand@nxp.com>
Signed-off-by: Horia Geantă <horia.geanta@nxp.com>
Acked-by: Ard Biesheuvel <ard.biesheuvel@linaro.org>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
			
			
This commit is contained in:
		
							parent
							
								
									e8342cc795
								
							
						
					
					
						commit
						331351f89c
					
				
					 1 changed files with 3 additions and 0 deletions
				
			
		|  | @ -1103,6 +1103,9 @@ static void test_ahash_speed_common(const char *algo, unsigned int secs, | ||||||
| 			break; | 			break; | ||||||
| 		} | 		} | ||||||
| 
 | 
 | ||||||
|  | 		if (speed[i].klen) | ||||||
|  | 			crypto_ahash_setkey(tfm, tvmem[0], speed[i].klen); | ||||||
|  | 
 | ||||||
| 		pr_info("test%3u " | 		pr_info("test%3u " | ||||||
| 			"(%5u byte blocks,%5u bytes per update,%4u updates): ", | 			"(%5u byte blocks,%5u bytes per update,%4u updates): ", | ||||||
| 			i, speed[i].blen, speed[i].plen, speed[i].blen / speed[i].plen); | 			i, speed[i].blen, speed[i].plen, speed[i].blen / speed[i].plen); | ||||||
|  |  | ||||||
		Loading…
	
	Add table
		
		Reference in a new issue
	
	 Horia Geantă
						Horia Geantă