Commit 58fdd306 authored by Dr. Stephen Henson's avatar Dr. Stephen Henson
Browse files

revert more "version skew" changes that break FIPS builds

parent 7175dbae
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -58,6 +58,7 @@
#include <openssl/objects.h>
#include <openssl/aes.h>
#include <openssl/sha.h>
#include "evp_locl.h"

#ifndef EVP_CIPH_FLAG_AEAD_CIPHER
#define EVP_CIPH_FLAG_AEAD_CIPHER	0x200000
+1 −0
Original line number Diff line number Diff line
@@ -62,6 +62,7 @@
#ifndef OPENSSL_NO_RC4

#include <openssl/evp.h>
#include "evp_locl.h"
#include <openssl/objects.h>
#include <openssl/rc4.h>

+2 −0
Original line number Diff line number Diff line
@@ -69,6 +69,8 @@
#include <openssl/rsa.h>
#endif

#include "evp_locl.h"

static int init(EVP_MD_CTX *ctx)
	{ return MD4_Init(ctx->md_data); }

+1 −0
Original line number Diff line number Diff line
@@ -68,6 +68,7 @@
#ifndef OPENSSL_NO_RSA
#include <openssl/rsa.h>
#endif
#include "evp_locl.h"

static int init(EVP_MD_CTX *ctx)
	{ return MD5_Init(ctx->md_data); }
+2 −0
Original line number Diff line number Diff line
@@ -69,6 +69,8 @@
#include <openssl/rsa.h>
#endif

#include "evp_locl.h"

static int init(EVP_MD_CTX *ctx)
	{ return MDC2_Init(ctx->md_data); }

Loading