Revert. Fixes Linux build.

This commit is contained in:
Steve Checkoway
2006-07-18 05:51:37 +00:00
parent 61739160fe
commit a07e194cf1
31 changed files with 86 additions and 86 deletions
+2 -2
View File
@@ -122,7 +122,7 @@ static Bignum rsa_privkey_op(Bignum input, const RSAKey *key)
SHA512_State ss;
unsigned char digest512[64];
unsigned digestused = ARRAY_SIZE(digest512);
unsigned digestused = ARRAYSIZE(digest512);
int hashseq = 0;
/*
@@ -158,7 +158,7 @@ static Bignum rsa_privkey_op(Bignum input, const RSAKey *key)
* Conceptually the following few lines are equivalent to
* byte = random_byte();
*/
if (digestused >= ARRAY_SIZE(digest512)) {
if (digestused >= ARRAYSIZE(digest512)) {
unsigned char seqbuf[4];
PUT_32BIT(seqbuf, hashseq);
SHA512_Init(&ss);