o_fips.c 624 B

123456789101112131415161718192021222324
  1. /*
  2. * Copyright 2011-2016 The OpenSSL Project Authors. All Rights Reserved.
  3. *
  4. * Licensed under the Apache License 2.0 (the "License"). You may not use
  5. * this file except in compliance with the License. You can obtain a copy
  6. * in the file LICENSE in the source distribution or at
  7. * https://www.openssl.org/source/license.html
  8. */
  9. #include "internal/cryptlib.h"
  10. int FIPS_mode(void)
  11. {
  12. /* This version of the library does not support FIPS mode. */
  13. return 0;
  14. }
  15. int FIPS_mode_set(int r)
  16. {
  17. if (r == 0)
  18. return 1;
  19. CRYPTOerr(CRYPTO_F_FIPS_MODE_SET, CRYPTO_R_FIPS_MODE_NOT_SUPPORTED);
  20. return 0;
  21. }