blob: c6961e932fef3437f3a25b2853c9a4fa61fdd179 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Neil Horman5b739ef2009-06-18 19:50:21 +08002#ifndef _FIPS_H
3#define _FIPS_H
4
5#ifdef CONFIG_CRYPTO_FIPS
6extern int fips_enabled;
Gilad Ben-Yossef95523892019-07-02 14:39:20 +03007extern struct atomic_notifier_head fips_fail_notif_chain;
8
9void fips_fail_notify(void);
10
Neil Horman5b739ef2009-06-18 19:50:21 +080011#else
12#define fips_enabled 0
Gilad Ben-Yossef95523892019-07-02 14:39:20 +030013
14static inline void fips_fail_notify(void) {}
15
Neil Horman5b739ef2009-06-18 19:50:21 +080016#endif
17
18#endif