blob: 4117cb7724b4d4d5dd2844d8adf3a291d52defdd [file] [log] [blame]
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001/*
Damien Miller4af51302000-04-16 11:18:38 +10002 *
Damien Miller95def091999-11-25 00:26:21 +11003 * cipher.c
Damien Miller4af51302000-04-16 11:18:38 +10004 *
Damien Miller95def091999-11-25 00:26:21 +11005 * Author: Tatu Ylonen <ylo@cs.hut.fi>
Damien Miller4af51302000-04-16 11:18:38 +10006 *
Damien Miller95def091999-11-25 00:26:21 +11007 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
8 * All rights reserved
Damien Miller4af51302000-04-16 11:18:38 +10009 *
Damien Miller95def091999-11-25 00:26:21 +110010 * Created: Wed Apr 19 17:41:39 1995 ylo
Damien Miller4af51302000-04-16 11:18:38 +100011 *
Damien Miller95def091999-11-25 00:26:21 +110012 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100013
14#include "includes.h"
Damien Millerb1715dc2000-05-30 13:44:51 +100015RCSID("$Id: cipher.c,v 1.21 2000/05/30 03:44:52 damien Exp $");
Damien Millerd4a8b7e1999-10-27 13:42:43 +100016
17#include "ssh.h"
18#include "cipher.h"
Damien Miller78928792000-04-12 20:17:38 +100019#include "xmalloc.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100020
21#include <openssl/md5.h>
Damien Millerd4a8b7e1999-10-27 13:42:43 +100022
23/*
Damien Miller78928792000-04-12 20:17:38 +100024 * This is used by SSH1:
25 *
26 * What kind of triple DES are these 2 routines?
Damien Millerd4a8b7e1999-10-27 13:42:43 +100027 *
28 * Why is there a redundant initialization vector?
29 *
30 * If only iv3 was used, then, this would till effect have been
31 * outer-cbc. However, there is also a private iv1 == iv2 which
32 * perhaps makes differential analysis easier. On the other hand, the
33 * private iv1 probably makes the CRC-32 attack ineffective. This is a
34 * result of that there is no longer any known iv1 to use when
35 * choosing the X block.
36 */
37void
38SSH_3CBC_ENCRYPT(des_key_schedule ks1,
Damien Miller95def091999-11-25 00:26:21 +110039 des_key_schedule ks2, des_cblock * iv2,
40 des_key_schedule ks3, des_cblock * iv3,
Damien Miller98c7ad62000-03-09 21:27:49 +110041 unsigned char *dest, unsigned char *src,
Damien Millerd4a8b7e1999-10-27 13:42:43 +100042 unsigned int len)
43{
Damien Miller95def091999-11-25 00:26:21 +110044 des_cblock iv1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100045
Damien Miller95def091999-11-25 00:26:21 +110046 memcpy(&iv1, iv2, 8);
Damien Millerd4a8b7e1999-10-27 13:42:43 +100047
Damien Miller95def091999-11-25 00:26:21 +110048 des_cbc_encrypt(src, dest, len, ks1, &iv1, DES_ENCRYPT);
Damien Miller98c7ad62000-03-09 21:27:49 +110049 memcpy(&iv1, dest + len - 8, 8);
Damien Millerd4a8b7e1999-10-27 13:42:43 +100050
Damien Miller95def091999-11-25 00:26:21 +110051 des_cbc_encrypt(dest, dest, len, ks2, iv2, DES_DECRYPT);
52 memcpy(iv2, &iv1, 8); /* Note how iv1 == iv2 on entry and exit. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100053
Damien Miller95def091999-11-25 00:26:21 +110054 des_cbc_encrypt(dest, dest, len, ks3, iv3, DES_ENCRYPT);
Damien Miller98c7ad62000-03-09 21:27:49 +110055 memcpy(iv3, dest + len - 8, 8);
Damien Millerd4a8b7e1999-10-27 13:42:43 +100056}
57
58void
59SSH_3CBC_DECRYPT(des_key_schedule ks1,
Damien Miller95def091999-11-25 00:26:21 +110060 des_key_schedule ks2, des_cblock * iv2,
61 des_key_schedule ks3, des_cblock * iv3,
Damien Miller98c7ad62000-03-09 21:27:49 +110062 unsigned char *dest, unsigned char *src,
Damien Millerd4a8b7e1999-10-27 13:42:43 +100063 unsigned int len)
64{
Damien Miller95def091999-11-25 00:26:21 +110065 des_cblock iv1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100066
Damien Miller95def091999-11-25 00:26:21 +110067 memcpy(&iv1, iv2, 8);
Damien Millerd4a8b7e1999-10-27 13:42:43 +100068
Damien Miller95def091999-11-25 00:26:21 +110069 des_cbc_encrypt(src, dest, len, ks3, iv3, DES_DECRYPT);
Damien Miller98c7ad62000-03-09 21:27:49 +110070 memcpy(iv3, src + len - 8, 8);
Damien Millerd4a8b7e1999-10-27 13:42:43 +100071
Damien Miller95def091999-11-25 00:26:21 +110072 des_cbc_encrypt(dest, dest, len, ks2, iv2, DES_ENCRYPT);
Damien Miller98c7ad62000-03-09 21:27:49 +110073 memcpy(iv2, dest + len - 8, 8);
Damien Millerd4a8b7e1999-10-27 13:42:43 +100074
Damien Miller95def091999-11-25 00:26:21 +110075 des_cbc_encrypt(dest, dest, len, ks1, &iv1, DES_DECRYPT);
76 /* memcpy(&iv1, iv2, 8); */
77 /* Note how iv1 == iv2 on entry and exit. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100078}
79
80/*
Damien Miller78928792000-04-12 20:17:38 +100081 * SSH1 uses a variation on Blowfish, all bytes must be swapped before
Damien Millerd4a8b7e1999-10-27 13:42:43 +100082 * and after encryption/decryption. Thus the swap_bytes stuff (yuk).
83 */
Damien Miller95def091999-11-25 00:26:21 +110084static void
Damien Millerd4a8b7e1999-10-27 13:42:43 +100085swap_bytes(const unsigned char *src, unsigned char *dst_, int n)
86{
Damien Miller95def091999-11-25 00:26:21 +110087 /* dst must be properly aligned. */
88 u_int32_t *dst = (u_int32_t *) dst_;
89 union {
90 u_int32_t i;
91 char c[4];
92 } t;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100093
Damien Miller95def091999-11-25 00:26:21 +110094 /* Process 8 bytes every lap. */
95 for (n = n / 8; n > 0; n--) {
96 t.c[3] = *src++;
97 t.c[2] = *src++;
98 t.c[1] = *src++;
99 t.c[0] = *src++;
100 *dst++ = t.i;
101
102 t.c[3] = *src++;
103 t.c[2] = *src++;
104 t.c[1] = *src++;
105 t.c[0] = *src++;
106 *dst++ = t.i;
107 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000108}
109
Damien Miller5428f641999-11-25 11:54:57 +1100110/*
111 * Names of all encryption algorithms.
112 * These must match the numbers defined in cipher.h.
113 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000114static char *cipher_names[] =
115{
Damien Miller95def091999-11-25 00:26:21 +1100116 "none",
117 "idea",
118 "des",
119 "3des",
120 "tss",
121 "rc4",
Damien Millerb38eff82000-04-01 11:09:21 +1000122 "blowfish",
123 "reserved",
124 "blowfish-cbc",
125 "3des-cbc",
126 "arcfour",
127 "cast128-cbc"
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000128};
129
Damien Miller5428f641999-11-25 11:54:57 +1100130/*
131 * Returns a bit mask indicating which ciphers are supported by this
132 * implementation. The bit mask has the corresponding bit set of each
133 * supported cipher.
134 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000135
Damien Miller4af51302000-04-16 11:18:38 +1000136unsigned int
Damien Miller1383bd82000-04-06 12:32:37 +1000137cipher_mask1()
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000138{
Damien Miller95def091999-11-25 00:26:21 +1100139 unsigned int mask = 0;
140 mask |= 1 << SSH_CIPHER_3DES; /* Mandatory */
141 mask |= 1 << SSH_CIPHER_BLOWFISH;
Damien Miller1383bd82000-04-06 12:32:37 +1000142 return mask;
143}
Damien Miller4af51302000-04-16 11:18:38 +1000144unsigned int
Damien Miller1383bd82000-04-06 12:32:37 +1000145cipher_mask2()
146{
147 unsigned int mask = 0;
Damien Millerb38eff82000-04-01 11:09:21 +1000148 mask |= 1 << SSH_CIPHER_BLOWFISH_CBC;
149 mask |= 1 << SSH_CIPHER_3DES_CBC;
150 mask |= 1 << SSH_CIPHER_ARCFOUR;
151 mask |= 1 << SSH_CIPHER_CAST128_CBC;
Damien Miller95def091999-11-25 00:26:21 +1100152 return mask;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000153}
Damien Miller4af51302000-04-16 11:18:38 +1000154unsigned int
Damien Miller1383bd82000-04-06 12:32:37 +1000155cipher_mask()
156{
157 return cipher_mask1() | cipher_mask2();
158}
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000159
160/* Returns the name of the cipher. */
161
Damien Miller95def091999-11-25 00:26:21 +1100162const char *
163cipher_name(int cipher)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000164{
Damien Miller95def091999-11-25 00:26:21 +1100165 if (cipher < 0 || cipher >= sizeof(cipher_names) / sizeof(cipher_names[0]) ||
166 cipher_names[cipher] == NULL)
Damien Miller78928792000-04-12 20:17:38 +1000167 fatal("cipher_name: bad cipher name: %d", cipher);
Damien Miller95def091999-11-25 00:26:21 +1100168 return cipher_names[cipher];
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000169}
170
Damien Miller78928792000-04-12 20:17:38 +1000171/* Returns 1 if the name of the ciphers are valid. */
172
173#define CIPHER_SEP ","
174int
175ciphers_valid(const char *names)
176{
177 char *ciphers;
178 char *p;
179 int i;
180
Damien Millerb1715dc2000-05-30 13:44:51 +1000181 if (names == NULL || strcmp(names, "") == 0)
Damien Miller78928792000-04-12 20:17:38 +1000182 return 0;
183 ciphers = xstrdup(names);
184 for ((p = strtok(ciphers, CIPHER_SEP)); p; (p = strtok(NULL, CIPHER_SEP))) {
185 i = cipher_number(p);
186 if (i == -1 || !(cipher_mask2() & (1 << i))) {
187 xfree(ciphers);
188 return 0;
189 }
190 }
191 xfree(ciphers);
192 return 1;
193}
194
Damien Miller5428f641999-11-25 11:54:57 +1100195/*
196 * Parses the name of the cipher. Returns the number of the corresponding
197 * cipher, or -1 on error.
198 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000199
200int
201cipher_number(const char *name)
202{
Damien Miller95def091999-11-25 00:26:21 +1100203 int i;
Damien Millerb1715dc2000-05-30 13:44:51 +1000204 if (name == NULL)
205 return -1;
Damien Miller95def091999-11-25 00:26:21 +1100206 for (i = 0; i < sizeof(cipher_names) / sizeof(cipher_names[0]); i++)
207 if (strcmp(cipher_names[i], name) == 0 &&
208 (cipher_mask() & (1 << i)))
209 return i;
210 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000211}
212
Damien Miller5428f641999-11-25 11:54:57 +1100213/*
214 * Selects the cipher, and keys if by computing the MD5 checksum of the
215 * passphrase and using the resulting 16 bytes as the key.
216 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000217
Damien Miller4af51302000-04-16 11:18:38 +1000218void
Damien Miller1383bd82000-04-06 12:32:37 +1000219cipher_set_key_string(CipherContext *context, int cipher, const char *passphrase)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000220{
Damien Miller95def091999-11-25 00:26:21 +1100221 MD5_CTX md;
222 unsigned char digest[16];
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000223
Damien Miller95def091999-11-25 00:26:21 +1100224 MD5_Init(&md);
225 MD5_Update(&md, (const unsigned char *) passphrase, strlen(passphrase));
226 MD5_Final(digest, &md);
227
Damien Miller1383bd82000-04-06 12:32:37 +1000228 cipher_set_key(context, cipher, digest, 16);
Damien Miller95def091999-11-25 00:26:21 +1100229
230 memset(digest, 0, sizeof(digest));
231 memset(&md, 0, sizeof(md));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000232}
233
234/* Selects the cipher to use and sets the key. */
235
Damien Miller4af51302000-04-16 11:18:38 +1000236void
Damien Miller1383bd82000-04-06 12:32:37 +1000237cipher_set_key(CipherContext *context, int cipher, const unsigned char *key,
238 int keylen)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000239{
Damien Miller95def091999-11-25 00:26:21 +1100240 unsigned char padded[32];
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000241
Damien Miller95def091999-11-25 00:26:21 +1100242 /* Set cipher type. */
243 context->type = cipher;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000244
Damien Miller95def091999-11-25 00:26:21 +1100245 /* Get 32 bytes of key data. Pad if necessary. (So that code
246 below does not need to worry about key size). */
247 memset(padded, 0, sizeof(padded));
248 memcpy(padded, key, keylen < sizeof(padded) ? keylen : sizeof(padded));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000249
Damien Miller95def091999-11-25 00:26:21 +1100250 /* Initialize the initialization vector. */
251 switch (cipher) {
252 case SSH_CIPHER_NONE:
Damien Miller5428f641999-11-25 11:54:57 +1100253 /*
254 * Has to stay for authfile saving of private key with no
255 * passphrase
256 */
Damien Miller95def091999-11-25 00:26:21 +1100257 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000258
Damien Miller95def091999-11-25 00:26:21 +1100259 case SSH_CIPHER_3DES:
Damien Miller5428f641999-11-25 11:54:57 +1100260 /*
261 * Note: the least significant bit of each byte of key is
262 * parity, and must be ignored by the implementation. 16
263 * bytes of key are used (first and last keys are the same).
264 */
Damien Miller95def091999-11-25 00:26:21 +1100265 if (keylen < 16)
266 error("Key length %d is insufficient for 3DES.", keylen);
267 des_set_key((void *) padded, context->u.des3.key1);
268 des_set_key((void *) (padded + 8), context->u.des3.key2);
269 if (keylen <= 16)
270 des_set_key((void *) padded, context->u.des3.key3);
271 else
272 des_set_key((void *) (padded + 16), context->u.des3.key3);
273 memset(context->u.des3.iv2, 0, sizeof(context->u.des3.iv2));
274 memset(context->u.des3.iv3, 0, sizeof(context->u.des3.iv3));
275 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000276
Damien Miller95def091999-11-25 00:26:21 +1100277 case SSH_CIPHER_BLOWFISH:
Damien Millerb38eff82000-04-01 11:09:21 +1000278 if (keylen < 16)
279 error("Key length %d is insufficient for blowfish.", keylen);
Damien Miller95def091999-11-25 00:26:21 +1100280 BF_set_key(&context->u.bf.key, keylen, padded);
281 memset(context->u.bf.iv, 0, 8);
282 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000283
Damien Millerb38eff82000-04-01 11:09:21 +1000284 case SSH_CIPHER_3DES_CBC:
285 case SSH_CIPHER_BLOWFISH_CBC:
286 case SSH_CIPHER_ARCFOUR:
287 case SSH_CIPHER_CAST128_CBC:
288 fatal("cipher_set_key: illegal cipher: %s", cipher_name(cipher));
289 break;
290
Damien Miller95def091999-11-25 00:26:21 +1100291 default:
292 fatal("cipher_set_key: unknown cipher: %s", cipher_name(cipher));
293 }
294 memset(padded, 0, sizeof(padded));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000295}
296
Damien Miller4af51302000-04-16 11:18:38 +1000297void
Damien Millerb38eff82000-04-01 11:09:21 +1000298cipher_set_key_iv(CipherContext * context, int cipher,
Damien Miller4af51302000-04-16 11:18:38 +1000299 const unsigned char *key, int keylen,
Damien Millerb38eff82000-04-01 11:09:21 +1000300 const unsigned char *iv, int ivlen)
301{
302 /* Set cipher type. */
303 context->type = cipher;
304
305 /* Initialize the initialization vector. */
306 switch (cipher) {
307 case SSH_CIPHER_NONE:
308 break;
309
310 case SSH_CIPHER_3DES:
311 case SSH_CIPHER_BLOWFISH:
312 fatal("cipher_set_key_iv: illegal cipher: %s", cipher_name(cipher));
313 break;
314
315 case SSH_CIPHER_3DES_CBC:
316 if (keylen < 24)
317 error("Key length %d is insufficient for 3des-cbc.", keylen);
318 des_set_key((void *) key, context->u.des3.key1);
319 des_set_key((void *) (key+8), context->u.des3.key2);
320 des_set_key((void *) (key+16), context->u.des3.key3);
321 if (ivlen < 8)
322 error("IV length %d is insufficient for 3des-cbc.", ivlen);
323 memcpy(context->u.des3.iv3, (char *)iv, 8);
324 break;
325
326 case SSH_CIPHER_BLOWFISH_CBC:
327 if (keylen < 16)
328 error("Key length %d is insufficient for blowfish.", keylen);
329 if (ivlen < 8)
330 error("IV length %d is insufficient for blowfish.", ivlen);
331 BF_set_key(&context->u.bf.key, keylen, (unsigned char *)key);
332 memcpy(context->u.bf.iv, (char *)iv, 8);
333 break;
334
335 case SSH_CIPHER_ARCFOUR:
336 if (keylen < 16)
337 error("Key length %d is insufficient for arcfour.", keylen);
338 RC4_set_key(&context->u.rc4, keylen, (unsigned char *)key);
339 break;
340
341 case SSH_CIPHER_CAST128_CBC:
342 if (keylen < 16)
343 error("Key length %d is insufficient for cast128.", keylen);
344 if (ivlen < 8)
345 error("IV length %d is insufficient for cast128.", ivlen);
346 CAST_set_key(&context->u.cast.key, keylen, (unsigned char *) key);
347 memcpy(context->u.cast.iv, (char *)iv, 8);
348 break;
349
350 default:
351 fatal("cipher_set_key: unknown cipher: %s", cipher_name(cipher));
352 }
353}
354
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000355/* Encrypts data using the cipher. */
356
Damien Miller4af51302000-04-16 11:18:38 +1000357void
Damien Miller95def091999-11-25 00:26:21 +1100358cipher_encrypt(CipherContext *context, unsigned char *dest,
359 const unsigned char *src, unsigned int len)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000360{
Damien Miller95def091999-11-25 00:26:21 +1100361 if ((len & 7) != 0)
362 fatal("cipher_encrypt: bad plaintext length %d", len);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000363
Damien Miller95def091999-11-25 00:26:21 +1100364 switch (context->type) {
365 case SSH_CIPHER_NONE:
366 memcpy(dest, src, len);
367 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000368
Damien Miller95def091999-11-25 00:26:21 +1100369 case SSH_CIPHER_3DES:
370 SSH_3CBC_ENCRYPT(context->u.des3.key1,
371 context->u.des3.key2, &context->u.des3.iv2,
372 context->u.des3.key3, &context->u.des3.iv3,
Damien Miller98c7ad62000-03-09 21:27:49 +1100373 dest, (unsigned char *) src, len);
Damien Miller95def091999-11-25 00:26:21 +1100374 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000375
Damien Miller95def091999-11-25 00:26:21 +1100376 case SSH_CIPHER_BLOWFISH:
377 swap_bytes(src, dest, len);
378 BF_cbc_encrypt(dest, dest, len,
Damien Miller4af51302000-04-16 11:18:38 +1000379 &context->u.bf.key, context->u.bf.iv,
Damien Miller95def091999-11-25 00:26:21 +1100380 BF_ENCRYPT);
381 swap_bytes(dest, dest, len);
382 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000383
Damien Millerb38eff82000-04-01 11:09:21 +1000384 case SSH_CIPHER_BLOWFISH_CBC:
385 BF_cbc_encrypt((void *)src, dest, len,
Damien Miller4af51302000-04-16 11:18:38 +1000386 &context->u.bf.key, context->u.bf.iv,
Damien Millerb38eff82000-04-01 11:09:21 +1000387 BF_ENCRYPT);
388 break;
389
390 case SSH_CIPHER_3DES_CBC:
391 des_ede3_cbc_encrypt(src, dest, len,
392 context->u.des3.key1, context->u.des3.key2,
393 context->u.des3.key3, &context->u.des3.iv3, DES_ENCRYPT);
394 break;
395
396 case SSH_CIPHER_ARCFOUR:
397 RC4(&context->u.rc4, len, (unsigned char *)src, dest);
398 break;
399
400 case SSH_CIPHER_CAST128_CBC:
401 CAST_cbc_encrypt(src, dest, len,
402 &context->u.cast.key, context->u.cast.iv, CAST_ENCRYPT);
403 break;
404
Damien Miller95def091999-11-25 00:26:21 +1100405 default:
406 fatal("cipher_encrypt: unknown cipher: %s", cipher_name(context->type));
407 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000408}
Damien Miller95def091999-11-25 00:26:21 +1100409
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000410/* Decrypts data using the cipher. */
411
Damien Miller4af51302000-04-16 11:18:38 +1000412void
Damien Miller95def091999-11-25 00:26:21 +1100413cipher_decrypt(CipherContext *context, unsigned char *dest,
414 const unsigned char *src, unsigned int len)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000415{
Damien Miller95def091999-11-25 00:26:21 +1100416 if ((len & 7) != 0)
417 fatal("cipher_decrypt: bad ciphertext length %d", len);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000418
Damien Miller95def091999-11-25 00:26:21 +1100419 switch (context->type) {
420 case SSH_CIPHER_NONE:
421 memcpy(dest, src, len);
422 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000423
Damien Miller95def091999-11-25 00:26:21 +1100424 case SSH_CIPHER_3DES:
Damien Miller95def091999-11-25 00:26:21 +1100425 SSH_3CBC_DECRYPT(context->u.des3.key1,
426 context->u.des3.key2, &context->u.des3.iv2,
427 context->u.des3.key3, &context->u.des3.iv3,
Damien Miller98c7ad62000-03-09 21:27:49 +1100428 dest, (unsigned char *) src, len);
Damien Miller95def091999-11-25 00:26:21 +1100429 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000430
Damien Miller95def091999-11-25 00:26:21 +1100431 case SSH_CIPHER_BLOWFISH:
Damien Miller95def091999-11-25 00:26:21 +1100432 swap_bytes(src, dest, len);
433 BF_cbc_encrypt((void *) dest, dest, len,
434 &context->u.bf.key, context->u.bf.iv,
435 BF_DECRYPT);
436 swap_bytes(dest, dest, len);
437 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000438
Damien Millerb38eff82000-04-01 11:09:21 +1000439 case SSH_CIPHER_BLOWFISH_CBC:
440 BF_cbc_encrypt((void *) src, dest, len,
441 &context->u.bf.key, context->u.bf.iv,
442 BF_DECRYPT);
443 break;
444
445 case SSH_CIPHER_3DES_CBC:
446 des_ede3_cbc_encrypt(src, dest, len,
447 context->u.des3.key1, context->u.des3.key2,
448 context->u.des3.key3, &context->u.des3.iv3, DES_DECRYPT);
449 break;
450
451 case SSH_CIPHER_ARCFOUR:
452 RC4(&context->u.rc4, len, (unsigned char *)src, dest);
453 break;
454
455 case SSH_CIPHER_CAST128_CBC:
456 CAST_cbc_encrypt(src, dest, len,
457 &context->u.cast.key, context->u.cast.iv, CAST_DECRYPT);
458 break;
459
Damien Miller95def091999-11-25 00:26:21 +1100460 default:
461 fatal("cipher_decrypt: unknown cipher: %s", cipher_name(context->type));
462 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000463}