Initial import from FreeBSD RELENG_4:
[dragonfly.git] / crypto / kerberosIV / lib / krb / str2key.c
1 /*
2  * Copyright (c) 1999 Kungliga Tekniska Högskolan
3  * (Royal Institute of Technology, Stockholm, Sweden). 
4  * All rights reserved. 
5  *
6  * Redistribution and use in source and binary forms, with or without 
7  * modification, are permitted provided that the following conditions 
8  * are met: 
9  *
10  * 1. Redistributions of source code must retain the above copyright 
11  *    notice, this list of conditions and the following disclaimer. 
12  *
13  * 2. Redistributions in binary form must reproduce the above copyright 
14  *    notice, this list of conditions and the following disclaimer in the 
15  *    documentation and/or other materials provided with the distribution. 
16  *
17  * 3. Neither the name of the Institute nor the names of its contributors 
18  *    may be used to endorse or promote products derived from this software 
19  *    without specific prior written permission. 
20  *
21  * THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND 
22  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 
23  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 
24  * ARE DISCLAIMED.  IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE 
25  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 
26  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 
27  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 
28  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 
29  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 
30  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 
31  * SUCH DAMAGE. 
32  */
33
34 #include "krb_locl.h"
35
36 RCSID("$Id: str2key.c,v 1.17 1999/12/02 16:58:44 joda Exp $");
37
38 #define lowcase(c) (('A' <= (c) && (c) <= 'Z') ? ((c) - 'A' + 'a') : (c))
39
40 /*
41  * The string to key function used by Transarc AFS.
42  */
43 void
44 afs_string_to_key(const char *pass, const char *cell, des_cblock *key)
45 {
46   if (strlen(pass) <= 8)        /* Short passwords. */
47     {
48       char buf[8 + 1], *s;
49       int i;
50
51       /*
52        * XOR cell and password and pad (or fill) with 'X' to length 8,
53        * then use crypt(3) to create DES key.
54        */
55       for (i = 0; i < 8; i++)
56         {
57           buf[i] = *pass ^ lowcase(*cell);
58           if (buf[i] == 0)
59             buf[i] = 'X';
60           if (*pass != 0)
61             pass++;
62           if (*cell != 0)
63             cell++;
64         }
65       buf[8] = 0;
66
67       s = crypt(buf, "p1");     /* Result from crypt is 7bit chars. */
68       s = s + 2;                /* Skip 2 chars of salt. */
69       for (i = 0; i < 8; i++)
70         ((char *) key)[i] = s[i] << 1; /* High bit is always zero */
71       des_fixup_key_parity(key); /*       Low  bit is parity */
72     }
73   else                          /* Long passwords */
74     {
75       int plen, clen;
76       char *buf, *t;
77       des_key_schedule sched;
78       des_cblock ivec;
79
80       /*
81        * Concatenate password with cell name,
82        * then checksum twice to create DES key.
83        */
84       plen = strlen(pass);
85       clen = strlen(cell);
86       buf = malloc(plen + clen + 1);
87       memcpy(buf, pass, plen);
88       for (t = buf + plen; *cell != 0; t++, cell++)
89         *t = lowcase(*cell);
90
91       memcpy(&ivec, "kerberos", 8);
92       memcpy(key, "kdsbdsns", 8);
93       des_key_sched(key, sched);
94       /* Beware, ivec is passed twice */
95       des_cbc_cksum((des_cblock *)buf, &ivec, plen + clen, sched, &ivec);
96
97       memcpy(key, &ivec, 8);
98       des_fixup_key_parity(key);
99       des_key_sched(key, sched);
100       /* Beware, ivec is passed twice */
101       des_cbc_cksum((des_cblock *)buf, key, plen + clen, sched, &ivec);
102       free(buf);
103       des_fixup_key_parity(key);
104     }
105 }