• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /*
3  * Copyright (c) 2021 Petr Vorel <pvorel@suse.cz>
4  */
5 
6 #ifndef TST_FIPS_H__
7 #define TST_FIPS_H__
8 
9 /*
10  * Detect whether FIPS enabled
11  * @return 0: FIPS not enabled, 1: FIPS enabled
12  */
13 int tst_fips_enabled(void);
14 
15 #endif /* TST_FIPS_H__ */
16