Upgrading openssl to latest released version 0.9.5

there are no major fixes in here but couple of bug fixes that
	may affect operation in some cases. I updated rename.h to
	make sure all symbols with T have dst__openssl prefix.
	Any bugs found in this source code should be reported to the
	openssl people.
	Olafur
This commit is contained in:
Olafur Gudmundsson
2000-05-25 18:27:42 +00:00
parent 7285eed748
commit 389f2ccc2f
18 changed files with 257 additions and 46 deletions

View File

@@ -111,3 +111,10 @@ int RAND_pseudo_bytes(unsigned char *buf, int num)
return rand_meth->pseudorand(buf,num);
return(-1);
}
int RAND_status(void)
{
if (rand_meth != NULL)
return rand_meth->status();
return 0;
}