mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 17:08:10 +00:00
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
|