2 * Sun RPC is a product of Sun Microsystems, Inc. and is provided for
3 * unrestricted use provided that this legend is included on all tape
4 * media and as a part of the software program in whole or part. Users
5 * may copy or modify Sun RPC without charge, but are not authorized
6 * to license or distribute it to anyone else except as part of a product or
7 * program developed by the user.
9 * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE
10 * WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR
11 * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE.
13 * Sun RPC is provided with no support and without any obligation on the
14 * part of Sun Microsystems, Inc. to assist in its use, correction,
15 * modification or enhancement.
17 * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE
18 * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC
19 * OR ANY PART THEREOF.
21 * In no event will Sun Microsystems, Inc. be liable for any lost revenue
22 * or profits or other special, indirect and consequential damages, even if
23 * Sun has been advised of the possibility of such damages.
25 * Sun Microsystems, Inc.
27 * Mountain View, California 94043
31 * Copyright (c) 1986-1991 by Sun Microsystems Inc.
35 #ident "@(#)xcrypt.c 1.11 94/08/23 SMI"
38 #if !defined(lint) && defined(SCCSIDS)
39 static char sccsid
[] = "@(#)xcrypt.c 1.3 89/03/24 Copyr 1986 Sun Micro";
43 * xcrypt.c: Hex encryption/decryption and utility routines
50 #include <sys/types.h>
51 #include <rpc/des_crypt.h>
55 '0', '1', '2', '3', '4', '5', '6', '7',
56 '8', '9', 'a', 'b', 'c', 'd', 'e', 'f',
62 (c >= '0' && c <= '9' \
64 : ({ int upp = toupper (c); \
65 upp >= 'A' && upp <= 'Z' ? upp - 'A' + 10 : -1; }))
67 static char hexval (char) internal_function
;
70 static void hex2bin (int, char *, char *) internal_function
;
71 static void bin2hex (int, unsigned char *, char *) internal_function
;
72 void passwd2des (char *pw
, char *key
);
75 * Encrypt a secret key given passwd
76 * The secret key is passed and returned in hex notation.
77 * Its length must be a multiple of 16 hex digits (64 bits).
80 xencrypt (char *secret
, char *passwd
)
88 len
= strlen (secret
) / 2;
89 buf
= malloc ((unsigned) len
);
90 hex2bin (len
, secret
, buf
);
91 passwd2des (passwd
, key
);
94 err
= cbc_crypt (key
, buf
, len
, DES_ENCRYPT
| DES_HW
, ivec
);
100 bin2hex (len
, (unsigned char *) buf
, secret
);
106 * Decrypt secret key using passwd
107 * The secret key is passed and returned in hex notation.
108 * Once again, the length is a multiple of 16 hex digits
111 xdecrypt (char *secret
, char *passwd
)
119 len
= strlen (secret
) / 2;
120 buf
= malloc ((unsigned) len
);
122 hex2bin (len
, secret
, buf
);
123 passwd2des (passwd
, key
);
126 err
= cbc_crypt (key
, buf
, len
, DES_DECRYPT
| DES_HW
, ivec
);
127 if (DES_FAILED (err
))
132 bin2hex (len
, (unsigned char *) buf
, secret
);
138 * Turn password into DES key
141 passwd2des (char *pw
, char *key
)
146 for (i
= 0; *pw
; i
= (i
+ 1) % 8)
147 key
[i
] ^= *pw
++ << 1;
153 * Hex to binary conversion
157 hex2bin (int len
, char *hexnum
, char *binnum
)
161 for (i
= 0; i
< len
; i
++)
162 *binnum
++ = 16 * hexval (hexnum
[2 * i
]) + hexval (hexnum
[2 * i
+ 1]);
166 * Binary to hex conversion
170 bin2hex (int len
, unsigned char *binnum
, char *hexnum
)
175 for (i
= 0; i
< len
; i
++)
178 hexnum
[i
* 2] = hex
[val
>> 4];
179 hexnum
[i
* 2 + 1] = hex
[val
& 0xf];
188 if (c
>= '0' && c
<= '9')
190 else if (c
>= 'a' && c
<= 'z')
191 return (c
- 'a' + 10);
192 else if (c
>= 'A' && c
<= 'Z')
193 return (c
- 'A' + 10);