mirror of
				https://git.kernel.org/pub/scm/linux/kernel/git/chenhuacai/linux-loongson
				synced 2025-10-31 18:36:37 +00:00 
			
		
		
		
	 5b739ef8a4
			
		
	
	
		5b739ef8a4
		
	
	
	
	
		
			
			FIPS-140 requires that all random number generators implement continuous self tests in which each extracted block of data is compared against the last block for repetition. The ansi_cprng implements such a test, but it would be nice if the hw rng's did the same thing. Obviously its not something thats always needed, but it seems like it would be a nice feature to have on occasion. I've written the below patch which allows individual entropy stores to be flagged as desiring a continuous test to be run on them as is extracted. By default this option is off, but is enabled in the event that fips mode is selected during bootup. Signed-off-by: Neil Horman <nhorman@tuxdriver.com> Acked-by: Matt Mackall <mpm@selenic.com> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
		
			
				
	
	
		
			11 lines
		
	
	
		
			128 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			128 B
		
	
	
	
		
			C
		
	
	
	
	
	
| #ifndef _FIPS_H
 | |
| #define _FIPS_H
 | |
| 
 | |
| #ifdef CONFIG_CRYPTO_FIPS
 | |
| extern int fips_enabled;
 | |
| #else
 | |
| #define fips_enabled 0
 | |
| #endif
 | |
| 
 | |
| #endif
 |