2015-01-22 03:40:55 +00:00
|
|
|
/*
|
2016-05-17 18:51:34 +00:00
|
|
|
* Copyright 2011-2016 The OpenSSL Project Authors. All Rights Reserved.
|
2011-04-01 14:49:30 +00:00
|
|
|
*
|
2016-05-17 18:51:34 +00:00
|
|
|
* Licensed under the OpenSSL license (the "License"). You may not use
|
|
|
|
* this file except in compliance with the License. You can obtain a copy
|
|
|
|
* in the file LICENSE in the source distribution or at
|
|
|
|
* https://www.openssl.org/source/license.html
|
2011-04-01 14:49:30 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <e_os.h>
|
|
|
|
#include <openssl/err.h>
|
2011-04-01 16:23:16 +00:00
|
|
|
#ifdef OPENSSL_FIPS
|
2015-01-22 03:40:55 +00:00
|
|
|
# include <openssl/fips.h>
|
|
|
|
# include <openssl/rand.h>
|
2011-04-01 16:23:16 +00:00
|
|
|
#endif
|
2011-04-01 14:49:30 +00:00
|
|
|
|
2015-01-22 03:40:55 +00:00
|
|
|
/*
|
|
|
|
* Perform any essential OpenSSL initialization operations. Currently only
|
|
|
|
* sets FIPS callbacks
|
2011-04-01 14:49:30 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
void OPENSSL_init(void)
|
2015-01-22 03:40:55 +00:00
|
|
|
{
|
|
|
|
static int done = 0;
|
|
|
|
if (done)
|
|
|
|
return;
|
|
|
|
done = 1;
|
2011-04-01 16:23:16 +00:00
|
|
|
#ifdef OPENSSL_FIPS
|
2015-01-22 03:40:55 +00:00
|
|
|
FIPS_set_locking_callbacks(CRYPTO_lock, CRYPTO_add_lock);
|
|
|
|
FIPS_set_error_callbacks(ERR_put_error, ERR_add_error_vdata);
|
|
|
|
FIPS_set_malloc_callbacks(CRYPTO_malloc, CRYPTO_free);
|
|
|
|
RAND_init_fips();
|
2011-04-01 16:23:16 +00:00
|
|
|
#endif
|
2015-01-22 03:40:55 +00:00
|
|
|
}
|