fips.c 903 B

1234567891011121314151617181920212223242526272829303132333435
  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)
  9. * any later version.
  10. *
  11. */
  12. #include "internal.h"
  13. // change@wtl.kSingh - In FIPS mode always enable this flag - starts
  14. #ifdef CONFIG_CRYPTO_FIPS
  15. int fips_enabled = 1;
  16. #else
  17. int fips_enabled;
  18. #endif
  19. // change@wtl.kSingh - In FIPS mode always enable this flag - ends
  20. EXPORT_SYMBOL_GPL(fips_enabled);
  21. /* Process kernel command-line parameter at boot time. fips=0 or fips=1 */
  22. static 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. __setup("fips=", fips_enable);