aboutsummaryrefslogtreecommitdiff
path: root/sys/kern
diff options
context:
space:
mode:
authorWarner Losh <imp@FreeBSD.org>2022-11-27 20:22:31 +0000
committerWarner Losh <imp@FreeBSD.org>2022-11-27 20:22:31 +0000
commit1ea42a28806e420b012d857a666e390d55d75630 (patch)
treee0f9fe16440a6808105e1ad23d5b6480d47627f5 /sys/kern
parent0af49f00b3096a5809f992d87b416cc0f70435ea (diff)
downloadsrc-1ea42a28806e420b012d857a666e390d55d75630.tar.gz
src-1ea42a28806e420b012d857a666e390d55d75630.zip
md5: Use c89 function definitions
Use the c89 function definitions rather than the old K&R definitions. Sponsored by: Netflix
Diffstat (limited to 'sys/kern')
-rw-r--r--sys/kern/md5c.c14
1 files changed, 4 insertions, 10 deletions
diff --git a/sys/kern/md5c.c b/sys/kern/md5c.c
index 175bd38aeee1..c23e874b14a1 100644
--- a/sys/kern/md5c.c
+++ b/sys/kern/md5c.c
@@ -131,8 +131,7 @@ static unsigned char PADDING[64] = {
/* MD5 initialization. Begins an MD5 operation, writing a new context. */
void
-MD5Init (context)
- MD5_CTX *context;
+MD5Init(MD5_CTX *context)
{
context->count[0] = context->count[1] = 0;
@@ -151,10 +150,7 @@ MD5Init (context)
*/
void
-MD5Update (context, in, inputLen)
- MD5_CTX *context;
- const void *in;
- unsigned int inputLen;
+MD5Update(MD5_CTX *context, const void *in, unsigned int inputLen)
{
unsigned int i, index, partLen;
const unsigned char *input = in;
@@ -194,7 +190,7 @@ MD5Update (context, in, inputLen)
*/
static void
-MD5Pad (MD5_CTX *context)
+MD5Pad(MD5_CTX *context)
{
unsigned char bits[8];
unsigned int index, padLen;
@@ -232,9 +228,7 @@ MD5Final(unsigned char digest[static MD5_DIGEST_LENGTH], MD5_CTX *context)
/* MD5 basic transformation. Transforms state based on block. */
static void
-MD5Transform (state, block)
- uint32_t state[4];
- const unsigned char block[64];
+MD5Transform(uint32_t state[4], const unsigned char block[64])
{
uint32_t a = state[0], b = state[1], c = state[2], d = state[3], x[16];