Initial import from FreeBSD RELENG_4:
[games.git] / contrib / opie / libopie / hashlen.c
1 /* hashlen.c: The opiehashlen() library function.
2
3 %%% copyright-cmetz-96
4 This software is Copyright 1996-2001 by Craig Metz, All Rights Reserved.
5 The Inner Net License Version 3 applies to this software.
6 You should have received a copy of the license with this software. If
7 you didn't get a copy, you may request one from <license@inner.net>.
8
9         History:
10
11         Modified by cmetz for OPIE 2.4. Use struct opie_otpkey, isolate variables.
12         Created by cmetz for OPIE 2.3.
13
14 $FreeBSD: src/contrib/opie/libopie/hashlen.c,v 1.3.6.2 2002/07/15 14:48:47 des Exp $
15 */
16
17 #include "opie_cfg.h"
18 #include "opie.h"
19
20 #include <sha.h>
21 #include <md4.h>
22 #include <md5.h>
23
24 VOIDRET opiehashlen FUNCTION((algorithm, in, out, n), int algorithm AND
25 VOIDPTR in AND struct opie_otpkey *out AND int n)
26 {
27   UINT4 *results = (UINT4 *)out;
28   UINT4 mdx_tmp[4];
29
30   switch(algorithm) {
31     case 3: {
32       SHA_CTX sha;
33       UINT4 digest[5];
34       SHA1_Init(&sha);
35       SHA1_Update(&sha, (unsigned char *)in, n);
36       SHA1_Final((unsigned char *)digest, &sha);
37       results[0] = digest[0] ^ digest[2] ^ digest[4];
38       results[1] = digest[1] ^ digest[3];
39       break;
40     }
41     case 4: {
42       MD4_CTX mdx;
43       MD4Init(&mdx);
44       MD4Update(&mdx, (unsigned char *)in, n);
45       MD4Final((unsigned char *)mdx_tmp, &mdx);
46       results[0] = mdx_tmp[0] ^ mdx_tmp[2];
47       results[1] = mdx_tmp[1] ^ mdx_tmp[3];
48       break;
49     }
50     case 5: {
51       MD5_CTX mdx;
52       MD5Init(&mdx);
53       MD5Update(&mdx, (unsigned char *)in, n);
54       MD5Final((unsigned char *)mdx_tmp, &mdx);
55       results[0] = mdx_tmp[0] ^ mdx_tmp[2];
56       results[1] = mdx_tmp[1] ^ mdx_tmp[3];
57       break;
58     }
59   }
60 }