2 * Copyright (c) 1991, 1993
3 * The Regents of the University of California. All rights reserved.
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
13 * 3. All advertising materials mentioning features or use of this software
14 * must display the following acknowledgement:
15 * This product includes software developed by the University of
16 * California, Berkeley and its contributors.
17 * 4. Neither the name of the University 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.
21 * THIS SOFTWARE IS PROVIDED BY THE REGENTS 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 REGENTS 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
36 __RCSID("$Heimdal: enc_des.c 14681 2005-03-23 16:19:31Z lha $"
39 #if defined(AUTHENTICATION) && defined(ENCRYPTION) && defined(DES_ENCRYPTION)
40 #include <arpa/telnet.h>
52 #include "misc-proto.h"
54 #include "crypto-headers.h"
56 extern int encrypt_debug_mode
;
64 #define IN_PROGRESS (NO_SEND_IV|NO_RECV_IV|NO_KEYID)
70 DES_cblock str_output
;
74 DES_key_schedule str_sched
;
80 DES_cblock krbdes_key
;
81 DES_key_schedule krbdes_sched
;
83 unsigned char fb_feed
[64];
88 struct stinfo streams
[2];
91 static struct fb fb
[2];
100 { "\0", 1, 0, 0, 0 }, /* default key of zero */
104 #define KEYFLAG_MASK 03
106 #define KEYFLAG_NOINIT 00
107 #define KEYFLAG_INIT 01
108 #define KEYFLAG_OK 02
109 #define KEYFLAG_BAD 03
111 #define KEYFLAG_SHIFT 2
113 #define SHIFT_VAL(a,b) (KEYFLAG_SHIFT*((a)+((b)*2)))
117 #define FB64_IV_BAD 3
120 void fb64_stream_iv (DES_cblock
, struct stinfo
*);
121 void fb64_init (struct fb
*);
122 static int fb64_start (struct fb
*, int, int);
123 int fb64_is (unsigned char *, int, struct fb
*);
124 int fb64_reply (unsigned char *, int, struct fb
*);
125 static void fb64_session (Session_Key
*, int, struct fb
*);
126 void fb64_stream_key (DES_cblock
, struct stinfo
*);
127 int fb64_keyid (int, unsigned char *, int *, struct fb
*);
128 void fb64_printsub(unsigned char *, int ,
129 unsigned char *, int , char *);
131 void cfb64_init(int server
)
134 fb
[CFB
].fb_feed
[4] = ENCTYPE_DES_CFB64
;
135 fb
[CFB
].streams
[0].str_flagshift
= SHIFT_VAL(0, CFB
);
136 fb
[CFB
].streams
[1].str_flagshift
= SHIFT_VAL(1, CFB
);
140 void ofb64_init(int server
)
143 fb
[OFB
].fb_feed
[4] = ENCTYPE_DES_OFB64
;
144 fb
[CFB
].streams
[0].str_flagshift
= SHIFT_VAL(0, OFB
);
145 fb
[CFB
].streams
[1].str_flagshift
= SHIFT_VAL(1, OFB
);
148 void fb64_init(struct fb
*fbp
)
150 memset(fbp
,0, sizeof(*fbp
));
151 fbp
->state
[0] = fbp
->state
[1] = FAILED
;
152 fbp
->fb_feed
[0] = IAC
;
153 fbp
->fb_feed
[1] = SB
;
154 fbp
->fb_feed
[2] = TELOPT_ENCRYPT
;
155 fbp
->fb_feed
[3] = ENCRYPT_IS
;
160 * -1: some error. Negotiation is done, encryption not ready.
161 * 0: Successful, initial negotiation all done.
162 * 1: successful, negotiation not done yet.
163 * 2: Not yet. Other things (like getting the key from
164 * Kerberos) have to happen before we can continue.
166 int cfb64_start(int dir
, int server
)
168 return(fb64_start(&fb
[CFB
], dir
, server
));
171 int ofb64_start(int dir
, int server
)
173 return(fb64_start(&fb
[OFB
], dir
, server
));
176 static int fb64_start(struct fb
*fbp
, int dir
, int server
)
185 * This is simply a request to have the other side
186 * start output (our input). He will negotiate an
187 * IV so we need not look for it.
189 state
= fbp
->state
[dir
-1];
195 state
= fbp
->state
[dir
-1];
198 else if ((state
& NO_SEND_IV
) == 0) {
202 if (!VALIDKEY(fbp
->krbdes_key
)) {
207 state
&= ~NO_SEND_IV
;
209 if (encrypt_debug_mode
)
210 printf("Creating new feed\r\n");
212 * Create a random feed and send it over.
214 #ifndef OLD_DES_RANDOM_KEY
215 DES_random_key(&fbp
->temp_feed
);
218 * From des_cryp.man "If the des_check_key flag is non-zero,
219 * des_set_key will check that the key passed is
220 * of odd parity and is not a week or semi-weak key."
223 DES_random_key(fbp
->temp_feed
);
224 DES_set_odd_parity(fbp
->temp_feed
);
225 } while (DES_is_weak_key(fbp
->temp_feed
));
227 DES_ecb_encrypt(&fbp
->temp_feed
,
229 &fbp
->krbdes_sched
, 1);
230 p
= fbp
->fb_feed
+ 3;
234 for (x
= 0; x
< sizeof(DES_cblock
); ++x
) {
235 if ((*p
++ = fbp
->temp_feed
[x
]) == IAC
)
240 printsub('>', &fbp
->fb_feed
[2], p
- &fbp
->fb_feed
[2]);
241 telnet_net_write(fbp
->fb_feed
, p
- fbp
->fb_feed
);
246 return(fbp
->state
[dir
-1] = state
);
251 * -1: some error. Negotiation is done, encryption not ready.
252 * 0: Successful, initial negotiation all done.
253 * 1: successful, negotiation not done yet.
256 int cfb64_is(unsigned char *data
, int cnt
)
258 return(fb64_is(data
, cnt
, &fb
[CFB
]));
261 int ofb64_is(unsigned char *data
, int cnt
)
263 return(fb64_is(data
, cnt
, &fb
[OFB
]));
267 int fb64_is(unsigned char *data
, int cnt
, struct fb
*fbp
)
270 int state
= fbp
->state
[DIR_DECRYPT
-1];
277 if (cnt
!= sizeof(DES_cblock
)) {
278 if (encrypt_debug_mode
)
279 printf("CFB64: initial vector failed on size\r\n");
284 if (encrypt_debug_mode
)
285 printf("CFB64: initial vector received\r\n");
287 if (encrypt_debug_mode
)
288 printf("Initializing Decrypt stream\r\n");
290 fb64_stream_iv(data
, &fbp
->streams
[DIR_DECRYPT
-1]);
292 p
= fbp
->fb_feed
+ 3;
293 *p
++ = ENCRYPT_REPLY
;
298 printsub('>', &fbp
->fb_feed
[2], p
- &fbp
->fb_feed
[2]);
299 telnet_net_write(fbp
->fb_feed
, p
- fbp
->fb_feed
);
301 state
= fbp
->state
[DIR_DECRYPT
-1] = IN_PROGRESS
;
305 if (encrypt_debug_mode
) {
306 printf("Unknown option type: %d\r\n", *(data
-1));
313 * We failed. Send an FB64_IV_BAD option
314 * to the other side so it will know that
317 p
= fbp
->fb_feed
+ 3;
318 *p
++ = ENCRYPT_REPLY
;
323 printsub('>', &fbp
->fb_feed
[2], p
- &fbp
->fb_feed
[2]);
324 telnet_net_write(fbp
->fb_feed
, p
- fbp
->fb_feed
);
328 return(fbp
->state
[DIR_DECRYPT
-1] = state
);
333 * -1: some error. Negotiation is done, encryption not ready.
334 * 0: Successful, initial negotiation all done.
335 * 1: successful, negotiation not done yet.
338 int cfb64_reply(unsigned char *data
, int cnt
)
340 return(fb64_reply(data
, cnt
, &fb
[CFB
]));
343 int ofb64_reply(unsigned char *data
, int cnt
)
345 return(fb64_reply(data
, cnt
, &fb
[OFB
]));
349 int fb64_reply(unsigned char *data
, int cnt
, struct fb
*fbp
)
351 int state
= fbp
->state
[DIR_ENCRYPT
-1];
358 fb64_stream_iv(fbp
->temp_feed
, &fbp
->streams
[DIR_ENCRYPT
-1]);
361 state
&= ~NO_RECV_IV
;
362 encrypt_send_keyid(DIR_ENCRYPT
, (unsigned char *)"\0", 1, 1);
366 memset(fbp
->temp_feed
, 0, sizeof(DES_cblock
));
367 fb64_stream_iv(fbp
->temp_feed
, &fbp
->streams
[DIR_ENCRYPT
-1]);
372 if (encrypt_debug_mode
) {
373 printf("Unknown option type: %d\r\n", data
[-1]);
382 return(fbp
->state
[DIR_ENCRYPT
-1] = state
);
385 void cfb64_session(Session_Key
*key
, int server
)
387 fb64_session(key
, server
, &fb
[CFB
]);
390 void ofb64_session(Session_Key
*key
, int server
)
392 fb64_session(key
, server
, &fb
[OFB
]);
395 static void fb64_session(Session_Key
*key
, int server
, struct fb
*fbp
)
398 if (!key
|| key
->type
!= SK_DES
) {
399 if (encrypt_debug_mode
)
400 printf("Can't set krbdes's session key (%d != %d)\r\n",
401 key
? key
->type
: -1, SK_DES
);
404 memcpy(fbp
->krbdes_key
, key
->data
, sizeof(DES_cblock
));
406 fb64_stream_key(fbp
->krbdes_key
, &fbp
->streams
[DIR_ENCRYPT
-1]);
407 fb64_stream_key(fbp
->krbdes_key
, &fbp
->streams
[DIR_DECRYPT
-1]);
409 if (fbp
->once
== 0) {
410 #if !defined(OLD_DES_RANDOM_KEY) && !defined(HAVE_OPENSSL)
411 DES_init_random_number_generator(&fbp
->krbdes_key
);
415 DES_set_key_checked((DES_cblock
*)&fbp
->krbdes_key
,
418 * Now look to see if krbdes_start() was was waiting for
419 * the key to show up. If so, go ahead an call it now
420 * that we have the key.
422 if (fbp
->need_start
) {
424 fb64_start(fbp
, DIR_ENCRYPT
, server
);
429 * We only accept a keyid of 0. If we get a keyid of
430 * 0, then mark the state as SUCCESS.
433 int cfb64_keyid(int dir
, unsigned char *kp
, int *lenp
)
435 return(fb64_keyid(dir
, kp
, lenp
, &fb
[CFB
]));
438 int ofb64_keyid(int dir
, unsigned char *kp
, int *lenp
)
440 return(fb64_keyid(dir
, kp
, lenp
, &fb
[OFB
]));
443 int fb64_keyid(int dir
, unsigned char *kp
, int *lenp
, struct fb
*fbp
)
445 int state
= fbp
->state
[dir
-1];
447 if (*lenp
!= 1 || (*kp
!= '\0')) {
457 return(fbp
->state
[dir
-1] = state
);
460 void fb64_printsub(unsigned char *data
, int cnt
,
461 unsigned char *buf
, int buflen
, char *type
)
467 buf
[buflen
-1] = '\0'; /* make sure it's NULL terminated */
472 snprintf(lbuf
, sizeof(lbuf
), "%s_IV", type
);
477 snprintf(lbuf
, sizeof(lbuf
), "%s_IV_OK", type
);
482 snprintf(lbuf
, sizeof(lbuf
), "%s_IV_BAD", type
);
487 snprintf(lbuf
, sizeof(lbuf
), " %d (unknown)", data
[2]);
490 for (; (buflen
> 0) && (*buf
= *cp
++); buf
++)
492 for (i
= 3; i
< cnt
; i
++) {
493 snprintf(lbuf
, sizeof(lbuf
), " %d", data
[i
]);
494 for (cp
= lbuf
; (buflen
> 0) && (*buf
= *cp
++); buf
++)
501 void cfb64_printsub(unsigned char *data
, int cnt
,
502 unsigned char *buf
, int buflen
)
504 fb64_printsub(data
, cnt
, buf
, buflen
, "CFB64");
507 void ofb64_printsub(unsigned char *data
, int cnt
,
508 unsigned char *buf
, int buflen
)
510 fb64_printsub(data
, cnt
, buf
, buflen
, "OFB64");
513 void fb64_stream_iv(DES_cblock seed
, struct stinfo
*stp
)
516 memcpy(stp
->str_iv
, seed
,sizeof(DES_cblock
));
517 memcpy(stp
->str_output
, seed
, sizeof(DES_cblock
));
519 DES_set_key_checked(&stp
->str_ikey
, &stp
->str_sched
);
521 stp
->str_index
= sizeof(DES_cblock
);
524 void fb64_stream_key(DES_cblock key
, struct stinfo
*stp
)
526 memcpy(stp
->str_ikey
, key
, sizeof(DES_cblock
));
527 DES_set_key_checked((DES_cblock
*)key
, &stp
->str_sched
);
529 memcpy(stp
->str_output
, stp
->str_iv
, sizeof(DES_cblock
));
531 stp
->str_index
= sizeof(DES_cblock
);
535 * DES 64 bit Cipher Feedback
541 * INPUT --(--------->(+)+---> DATA
547 * iV: Initial vector, 64 bits (8 bytes) long.
548 * Dn: the nth chunk of 64 bits (8 bytes) of data to encrypt (decrypt).
549 * On: the nth chunk of 64 bits (8 bytes) of encrypted (decrypted) output.
553 * V(n+1) = DES(On, key)
556 void cfb64_encrypt(unsigned char *s
, int c
)
558 struct stinfo
*stp
= &fb
[CFB
].streams
[DIR_ENCRYPT
-1];
561 index
= stp
->str_index
;
563 if (index
== sizeof(DES_cblock
)) {
565 DES_ecb_encrypt(&stp
->str_output
, &b
,&stp
->str_sched
, 1);
566 memcpy(stp
->str_feed
, b
, sizeof(DES_cblock
));
570 /* On encryption, we store (feed ^ data) which is cypher */
571 *s
= stp
->str_output
[index
] = (stp
->str_feed
[index
] ^ *s
);
575 stp
->str_index
= index
;
578 int cfb64_decrypt(int data
)
580 struct stinfo
*stp
= &fb
[CFB
].streams
[DIR_DECRYPT
-1];
585 * Back up one byte. It is assumed that we will
586 * never back up more than one byte. If we do, this
587 * may or may not work.
594 index
= stp
->str_index
++;
595 if (index
== sizeof(DES_cblock
)) {
597 DES_ecb_encrypt(&stp
->str_output
,&b
, &stp
->str_sched
, 1);
598 memcpy(stp
->str_feed
, b
, sizeof(DES_cblock
));
599 stp
->str_index
= 1; /* Next time will be 1 */
600 index
= 0; /* But now use 0 */
603 /* On decryption we store (data) which is cypher. */
604 stp
->str_output
[index
] = data
;
605 return(data
^ stp
->str_feed
[index
]);
609 * DES 64 bit Output Feedback
616 * INPUT -------->(+) ----> DATA
619 * iV: Initial vector, 64 bits (8 bytes) long.
620 * Dn: the nth chunk of 64 bits (8 bytes) of data to encrypt (decrypt).
621 * On: the nth chunk of 64 bits (8 bytes) of encrypted (decrypted) output.
624 * V(n+1) = DES(Vn, key)
628 void ofb64_encrypt(unsigned char *s
, int c
)
630 struct stinfo
*stp
= &fb
[OFB
].streams
[DIR_ENCRYPT
-1];
633 index
= stp
->str_index
;
635 if (index
== sizeof(DES_cblock
)) {
637 DES_ecb_encrypt(&stp
->str_feed
,&b
, &stp
->str_sched
, 1);
638 memcpy(stp
->str_feed
, b
, sizeof(DES_cblock
));
641 *s
++ ^= stp
->str_feed
[index
];
644 stp
->str_index
= index
;
647 int ofb64_decrypt(int data
)
649 struct stinfo
*stp
= &fb
[OFB
].streams
[DIR_DECRYPT
-1];
654 * Back up one byte. It is assumed that we will
655 * never back up more than one byte. If we do, this
656 * may or may not work.
663 index
= stp
->str_index
++;
664 if (index
== sizeof(DES_cblock
)) {
666 DES_ecb_encrypt(&stp
->str_feed
,&b
,&stp
->str_sched
, 1);
667 memcpy(stp
->str_feed
, b
, sizeof(DES_cblock
));
668 stp
->str_index
= 1; /* Next time will be 1 */
669 index
= 0; /* But now use 0 */
672 return(data
^ stp
->str_feed
[index
]);