ANSIfy and KNF function arg definitions in libmd/md4.c

Reported by:	bde, in 2017
This commit is contained in:
Ed Maste 2020-04-03 20:56:43 +00:00
parent ccb1ebe01c
commit 6e46e45f97
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=359615

View file

@ -93,8 +93,8 @@ static unsigned char PADDING[64] = {
/* MD4 initialization. Begins an MD4 operation, writing a new context.
*/
void MD4Init (context)
MD4_CTX *context; /* context */
void
MD4Init(MD4_CTX *context)
{
context->count[0] = context->count[1] = 0;
@ -110,10 +110,8 @@ MD4_CTX *context; /* context */
operation, processing another message block, and updating the
context.
*/
void MD4Update (context, in, inputLen)
MD4_CTX *context; /* context */
const void *in; /* input block */
unsigned int inputLen; /* length of input block */
void
MD4Update(MD4_CTX *context, const void *in, unsigned int inputLen)
{
unsigned int i, idx, partLen;
const unsigned char *input = in;
@ -149,8 +147,8 @@ unsigned int inputLen; /* length of input block */
}
/* MD4 padding. */
void MD4Pad (context)
MD4_CTX *context; /* context */
void
MD4Pad(MD4_CTX *context)
{
unsigned char bits[8];
unsigned int idx, padLen;
@ -171,9 +169,8 @@ MD4_CTX *context; /* context */
/* MD4 finalization. Ends an MD4 message-digest operation, writing the
the message digest and zeroizing the context.
*/
void MD4Final (digest, context)
unsigned char digest[16]; /* message digest */
MD4_CTX *context; /* context */
void
MD4Final(unsigned char digest[16], MD4_CTX *context)
{
/* Do padding */
MD4Pad (context);
@ -188,9 +185,8 @@ MD4_CTX *context; /* context */
/* MD4 basic transformation. Transforms state based on block.
*/
static void MD4Transform (state, block)
UINT4 state[4];
const unsigned char block[64];
static void
MD4Transform(UINT4 state[4], const unsigned char block[64])
{
UINT4 a = state[0], b = state[1], c = state[2], d = state[3], x[16];
@ -263,10 +259,8 @@ const unsigned char block[64];
/* Encodes input (UINT4) into output (unsigned char). Assumes len is
a multiple of 4.
*/
static void Encode (output, input, len)
unsigned char *output;
UINT4 *input;
unsigned int len;
static void
Encode(unsigned char *output, UINT4 *input, unsigned int len)
{
unsigned int i, j;
@ -281,11 +275,8 @@ unsigned int len;
/* Decodes input (unsigned char) into output (UINT4). Assumes len is
a multiple of 4.
*/
static void Decode (output, input, len)
UINT4 *output;
const unsigned char *input;
unsigned int len;
static void
Decode(UINT4 *output, const unsigned char *input, unsigned int len)
{
unsigned int i, j;