FIPS build fixes.
PR#3673 Reviewed-by: Tim Hudson <tjh@openssl.org>
This commit is contained in:
parent
06aab26874
commit
6fa805f516
3 changed files with 8 additions and 8 deletions
|
@ -69,16 +69,16 @@
|
|||
*
|
||||
*/
|
||||
|
||||
#ifdef OPENSSL_FIPS
|
||||
# include <openssl/fips.h>
|
||||
#endif
|
||||
|
||||
#include <string.h>
|
||||
#include "ec_lcl.h"
|
||||
#include <openssl/err.h>
|
||||
#include <openssl/obj_mac.h>
|
||||
#include <openssl/opensslconf.h>
|
||||
|
||||
#ifdef OPENSSL_FIPS
|
||||
# include <openssl/fips.h>
|
||||
#endif
|
||||
|
||||
typedef struct {
|
||||
int field_type, /* either NID_X9_62_prime_field or
|
||||
* NID_X9_62_characteristic_two_field */
|
||||
|
|
|
@ -69,13 +69,13 @@
|
|||
*
|
||||
*/
|
||||
|
||||
#include <openssl/err.h>
|
||||
#include "ec_lcl.h"
|
||||
|
||||
#ifdef OPENSSL_FIPS
|
||||
# include <openssl/fips.h>
|
||||
#endif
|
||||
|
||||
#include <openssl/err.h>
|
||||
#include "ec_lcl.h"
|
||||
|
||||
EC_GROUP *EC_GROUP_new_curve_GFp(const BIGNUM *p, const BIGNUM *a,
|
||||
const BIGNUM *b, BN_CTX *ctx)
|
||||
{
|
||||
|
|
|
@ -470,7 +470,7 @@ static int tls1_get_curvelist(SSL *s, int sess,
|
|||
# ifdef OPENSSL_FIPS
|
||||
if (FIPS_mode()) {
|
||||
*pcurves = fips_curves_default;
|
||||
*pcurveslen = sizeof(fips_curves_default);
|
||||
pcurveslen = sizeof(fips_curves_default);
|
||||
} else
|
||||
# endif
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue