summaryrefslogtreecommitdiffstats
path: root/src/lib/crypto/md5/t_cksum.c
blob: 17ecd51d7c466dc1d56b4580eec2e5ee2928d50d (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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
/*
 * lib/crypto/md5/t_cksum.c
 *
 * Copyright 1995 by the Massachusetts Institute of Technology.
 * All Rights Reserved.
 *
 * Export of this software from the United States of America may
 *   require a specific license from the United States Government.
 *   It is the responsibility of any person or organization contemplating
 *   export to obtain such a license before exporting.
 *
 * WITHIN THAT CONSTRAINT, permission to use, copy, modify, and
 * distribute this software and its documentation for any purpose and
 * without fee is hereby granted, provided that the above copyright
 * notice appear in all copies and that both that copyright notice and
 * this permission notice appear in supporting documentation, and that
 * the name of M.I.T. not be used in advertising or publicity pertaining
 * to distribution of the software without specific, written prior
 * permission.  Furthermore if you modify this software you must label
 * your software as modified software and not distribute it in such a
 * fashion that it might be confused with the original M.I.T. software.
 * M.I.T. makes no representations about the suitability of
 * this software for any purpose.  It is provided "as is" without express
 * or implied warranty.
 *
 */

/*
 * t_cksum.c - Test checksum and checksum compatability for rsa-md[4,5]-des
 */

#ifndef	MD
#define	MD	5
#endif	/* MD */

#include "k5-int.h"
#if	MD == 4
#include "rsa-md4.h"
#endif	/* MD == 4 */
#if	MD == 5
#include "rsa-md5.h"
#endif	/* MD == 5 */
#include "des_int.h"

#define MD5_K5BETA_COMPAT
#define MD4_K5BETA_COMPAT

#if	MD == 4
#define	CONFOUNDER_LENGTH	RSA_MD4_DES_CONFOUND_LENGTH
#define	NEW_CHECKSUM_LENGTH	NEW_RSA_MD4_DES_CKSUM_LENGTH
#define	OLD_CHECKSUM_LENGTH	OLD_RSA_MD4_DES_CKSUM_LENGTH
#define	CHECKSUM_TYPE		CKSUMTYPE_RSA_MD4_DES
#ifdef	MD4_K5BETA_COMPAT
#define	K5BETA_COMPAT	1
#else	/* MD4_K5BETA_COMPAT */
#undef	K5BETA_COMPAT
#endif	/* MD4_K5BETA_COMPAT */
#define	CKSUM_FUNCTION		krb5_md4_crypto_sum_func
#define	COMPAT_FUNCTION		krb5_md4_crypto_compat_sum_func
#define	VERIFY_FUNCTION		krb5_md4_crypto_verify_func
#endif	/* MD == 4 */

#if	MD == 5
#define	CONFOUNDER_LENGTH	RSA_MD5_DES_CONFOUND_LENGTH
#define	NEW_CHECKSUM_LENGTH	NEW_RSA_MD5_DES_CKSUM_LENGTH
#define	OLD_CHECKSUM_LENGTH	OLD_RSA_MD5_DES_CKSUM_LENGTH
#define	CHECKSUM_TYPE		CKSUMTYPE_RSA_MD5_DES
#ifdef	MD5_K5BETA_COMPAT
#define	K5BETA_COMPAT	1
#else	/* MD5_K5BETA_COMPAT */
#undef	K5BETA_COMPAT
#endif	/* MD5_K5BETA_COMPAT */
#define	CKSUM_FUNCTION		krb5_md5_crypto_sum_func
#define	COMPAT_FUNCTION		krb5_md5_crypto_compat_sum_func
#define	VERIFY_FUNCTION		krb5_md5_crypto_verify_func
#endif	/* MD == 5 */

static void
print_checksum(text, number, message, checksum)
     char	*text;
     int	number;
     char	*message;
     krb5_checksum	*checksum;
{
  int i;

  printf("%s MD%d checksum(\"%s\") = ", text, number, message);
  for (i=0; i<checksum->length; i++)
    printf("%02x", checksum->contents[i]);
  printf("\n");
}

/*
 * Test the checksum verification of Old Style (tm) and correct RSA-MD[4,5]-DES
 * checksums.
 */
int
main(argc, argv)
     int argc;
     char **argv;
{
  int 			msgindex;
  krb5_context		kcontext;
  krb5_encrypt_block	encblock;
  krb5_keyblock		keyblock;
  krb5_error_code	kret;
  krb5_checksum		oldstyle_checksum;
  krb5_checksum		newstyle_checksum;
  krb5_data		pwdata;
  char			*pwd;

  pwd = "test password";
  pwdata.length = strlen(pwd);
  pwdata.data = pwd;
  krb5_use_enctype(kcontext, &encblock, DEFAULT_KDC_ENCTYPE);
  if ((kret = mit_des_string_to_key(&encblock, &keyblock, &pwdata, NULL))) {
    printf("mit_des_string_to_key choked with %d\n", kret);
    return(kret);
  }
  if ((kret = mit_des_process_key(&encblock, &keyblock))) {
    printf("mit_des_process_key choked with %d\n", kret);
    return(kret);
  }

  oldstyle_checksum.length = OLD_CHECKSUM_LENGTH;
  if (!(oldstyle_checksum.contents = (krb5_octet *) malloc(OLD_CHECKSUM_LENGTH))) {
    printf("cannot get memory for old style checksum\n");
    return(ENOMEM);
  }
  newstyle_checksum.length = NEW_CHECKSUM_LENGTH;
  if (!(newstyle_checksum.contents = (krb5_octet *)
	malloc(NEW_CHECKSUM_LENGTH))) {
    printf("cannot get memory for new style checksum\n");
    return(ENOMEM);
  }
  for (msgindex = 1; msgindex < argc; msgindex++) {
    if ((kret = CKSUM_FUNCTION(argv[msgindex],
			       strlen(argv[msgindex]),
			       (krb5_pointer) keyblock.contents,
			       keyblock.length,
			       &newstyle_checksum))) {
      printf("krb5_calculate_checksum choked with %d\n", kret);
      break;
    }
    print_checksum("correct", MD, argv[msgindex], &newstyle_checksum);
#ifdef	K5BETA_COMPAT
    if ((kret = COMPAT_FUNCTION(argv[msgindex],
				strlen(argv[msgindex]),
				(krb5_pointer) keyblock.contents,
				keyblock.length,
				&oldstyle_checksum))) {
      printf("old style calculate_checksum choked with %d\n", kret);
      break;
    }
    print_checksum("old", MD, argv[msgindex], &oldstyle_checksum);
#endif	/* K5BETA_COMPAT */
    if ((kret = VERIFY_FUNCTION(&newstyle_checksum,
				argv[msgindex],
				strlen(argv[msgindex]),
				(krb5_pointer) keyblock.contents,
				keyblock.length))) {
      printf("verify on new checksum choked with %d\n", kret);
      break;
    }
    printf("Verify succeeded for \"%s\"\n", argv[msgindex]);
#ifdef	K5BETA_COMPAT
    if ((kret = VERIFY_FUNCTION(&oldstyle_checksum,
				argv[msgindex],
				strlen(argv[msgindex]),
				(krb5_pointer) keyblock.contents,
				keyblock.length))) {
      printf("verify on old checksum choked with %d\n", kret);
      break;
    }
    printf("Compatible checksum verify succeeded for \"%s\"\n",
	   argv[msgindex]);
#endif	/* K5BETA_COMPAT */
    newstyle_checksum.contents[0]++;
    if (!(kret = VERIFY_FUNCTION(&newstyle_checksum,
				 argv[msgindex],
				 strlen(argv[msgindex]),
				 (krb5_pointer) keyblock.contents,
				 keyblock.length))) {
      printf("verify on new checksum should have choked\n");
      break;
    }
    printf("Verify of bad checksum OK for \"%s\"\n", argv[msgindex]);
#ifdef	K5BETA_COMPAT
    oldstyle_checksum.contents[0]++;
    if (!(kret = VERIFY_FUNCTION(&oldstyle_checksum,
				 argv[msgindex],
				 strlen(argv[msgindex]),
				 (krb5_pointer) keyblock.contents,
				 keyblock.length))) {
      printf("verify on old checksum should have choked\n");
      break;
    }
    printf("Compatible checksum verify of altered checksum OK for \"%s\"\n",
	   argv[msgindex]);
#endif	/* K5BETA_COMPAT */
    kret = 0;
  }
  if (!kret)
    printf("%d tests passed successfully for MD%d checksum\n", argc-1, MD);
  return(kret);
}