blob: 0f65df997bfe7614460e870a9d5e9d75fd9ee367 [file] [log] [blame]
Neil Hormanccb778e2008-08-05 14:13:08 +08001/*
2 * FIPS 200 support.
3 *
4 * Copyright (c) 2008 Neil Horman <nhorman@tuxdriver.com>
5 *
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published by the Free
8 * Software Foundation; either version 2 of the License, or (at your option)
9 * any later version.
10 *
11 */
12
Herbert Xu76450f92015-04-22 13:25:54 +080013#include <linux/export.h>
14#include <linux/fips.h>
15#include <linux/init.h>
16#include <linux/kernel.h>
Neil Hormanccb778e2008-08-05 14:13:08 +080017
18int fips_enabled;
19EXPORT_SYMBOL_GPL(fips_enabled);
20
21/* Process kernel command-line parameter at boot time. fips=0 or fips=1 */
22static int fips_enable(char *str)
23{
24 fips_enabled = !!simple_strtol(str, NULL, 0);
25 printk(KERN_INFO "fips mode: %s\n",
26 fips_enabled ? "enabled" : "disabled");
27 return 1;
28}
29
30__setup("fips=", fips_enable);