fips.c (e5451c8f8330e03ad3cfa16048b4daf961af434f) fips.c (c4741b23059794bd99beef0f700103b0d983b3fd)
1/*
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)

--- 60 unchanged lines hidden (view full) ---

69 return 0;
70}
71
72static void __exit fips_exit(void)
73{
74 crypto_proc_fips_exit();
75}
76
1/*
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)

--- 60 unchanged lines hidden (view full) ---

69 return 0;
70}
71
72static void __exit fips_exit(void)
73{
74 crypto_proc_fips_exit();
75}
76
77module_init(fips_init);
77subsys_initcall(fips_init);
78module_exit(fips_exit);
78module_exit(fips_exit);