summaryrefslogtreecommitdiffstats
path: root/contrib/ntp/libntp/a_md5encrypt.c
blob: b7f23220398770d723117d35850bc361b13611aa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
/*
 *	MD5 interface for rsaref2.0
 *
 * These routines implement an interface for the RSA Laboratories
 * implementation of the Message Digest 5 (MD5) algorithm. This
 * algorithm is included in the rsaref2.0 package available from RSA in
 * the US and foreign countries. Further information is available at
 * www.rsa.com.
 */

#include "ntp_machine.h"

#ifdef HAVE_CONFIG_H
#include <config.h>
#endif

#include <stdio.h>

#include "ntp_types.h"
#include "ntp_string.h"
#include "global.h"
#include "md5.h"
#include "ntp_stdlib.h"

#define BLOCK_OCTETS	16	/* message digest size */


/*
 * MD5authencrypt - generate MD5 message authenticator
 *
 * Returns length of authenticator field.
 */
int
MD5authencrypt(
	u_char *key,		/* key pointer */
	u_int32 *pkt,		/* packet pointer */
	int length		/* packet length */
	)
{
	MD5_CTX ctx;
	u_char digest[BLOCK_OCTETS];
	int i;

	/*
	 * MD5 with key identifier concatenated with packet.
	 */
	MD5Init(&ctx);
	MD5Update(&ctx, key, (u_int)cache_keylen);
	MD5Update(&ctx, (u_char *)pkt, (u_int)length);
	MD5Final(digest, &ctx);
	i = length / 4;
	memmove((char *)&pkt[i + 1], (char *)digest, BLOCK_OCTETS);
	return (BLOCK_OCTETS + 4);
}


/*
 * MD5authdecrypt - verify MD5 message authenticator
 *
 * Returns one if authenticator valid, zero if invalid.
 */
int
MD5authdecrypt(
	u_char *key,		/* key pointer */
	u_int32 *pkt,		/* packet pointer */
	int length, 	/* packet length */
	int size		/* MAC size */
	)
{
	MD5_CTX ctx;
	u_char digest[BLOCK_OCTETS];

	/*
	 * MD5 with key identifier concatenated with packet.
	 */
	if (size != BLOCK_OCTETS + 4)
		return (0);
	MD5Init(&ctx);
	MD5Update(&ctx, key, (u_int)cache_keylen);
	MD5Update(&ctx, (u_char *)pkt, (u_int)length);
	MD5Final(digest, &ctx);
	return (!memcmp((char *)digest, (char *)pkt + length + 4,
		BLOCK_OCTETS));
}
OpenPOWER on IntegriCloud