]> git.ipfire.org Git - thirdparty/openssl.git/blame - crypto/o_fips.c
dsa.h: fix preprocessor indentation
[thirdparty/openssl.git] / crypto / o_fips.c
CommitLineData
0f113f3e 1/*
62867571 2 * Copyright 2011-2016 The OpenSSL Project Authors. All Rights Reserved.
086e32a6 3 *
0e9725bc 4 * Licensed under the Apache License 2.0 (the "License"). You may not use
62867571
RS
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
086e32a6
DSH
8 */
9
b39fc560 10#include "internal/cryptlib.h"
086e32a6
DSH
11
12int FIPS_mode(void)
0f113f3e 13{
b53338cb 14 /* This version of the library does not support FIPS mode. */
0f113f3e 15 return 0;
0f113f3e 16}
086e32a6
DSH
17
18int FIPS_mode_set(int r)
0f113f3e 19{
0f113f3e
MC
20 if (r == 0)
21 return 1;
22 CRYPTOerr(CRYPTO_F_FIPS_MODE_SET, CRYPTO_R_FIPS_MODE_NOT_SUPPORTED);
23 return 0;
0f113f3e 24}