Commit 932858d5 authored by Dr. Stephen Henson's avatar Dr. Stephen Henson
Browse files

Oops, fips_check_rsa isn't static.

parent c4b3503b
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -64,6 +64,7 @@ int fips_set_owning_thread(void);
void fips_set_selftest_fail(void);
int fips_clear_owning_thread(void);
unsigned char *fips_signature_witness(void);
int fips_check_rsa(RSA *rsa);

#define FIPS_MAX_CIPHER_TEST_SIZE	16

+1 −1
Original line number Diff line number Diff line
@@ -82,7 +82,7 @@ void FIPS_corrupt_rsa_keygen(void)
	fips_rsa_pairwise_fail = 1;
	}

static int fips_check_rsa(RSA *rsa)
int fips_check_rsa(RSA *rsa)
	{
	const unsigned char tbs[] = "RSA Pairwise Check Data";
	unsigned char *ctbuf = NULL, *ptbuf = NULL;