Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 724e6d3fe8003c3f60bf404bf22e4e331327c596 10 lines 128 B view raw
1#ifndef _FIPS_H 2#define _FIPS_H 3 4#ifdef CONFIG_CRYPTO_FIPS 5extern int fips_enabled; 6#else 7#define fips_enabled 0 8#endif 9 10#endif