blob: 5589c24fa8e2ae4fff0865925ff08bdab46665f3 [file] [log] [blame]
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001/*
Damien Miller95def091999-11-25 00:26:21 +11002 *
3 * cipher.c
4 *
5 * Author: Tatu Ylonen <ylo@cs.hut.fi>
6 *
7 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
8 * All rights reserved
9 *
10 * Created: Wed Apr 19 17:41:39 1995 ylo
11 *
12 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100013
14#include "includes.h"
Damien Miller1fa154b2000-01-23 10:32:03 +110015RCSID("$Id: cipher.c,v 1.12 2000/01/22 23:32:03 damien Exp $");
Damien Millerd4a8b7e1999-10-27 13:42:43 +100016
17#include "ssh.h"
18#include "cipher.h"
Damien Miller1fa154b2000-01-23 10:32:03 +110019#include "config.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100020
Damien Miller7f6ea021999-10-28 13:25:17 +100021#ifdef HAVE_OPENSSL
Damien Millerd4a8b7e1999-10-27 13:42:43 +100022#include <openssl/md5.h>
Damien Miller7f6ea021999-10-28 13:25:17 +100023#endif
24#ifdef HAVE_SSL
25#include <ssl/md5.h>
26#endif
Damien Millerd4a8b7e1999-10-27 13:42:43 +100027
28/*
29 * What kind of tripple DES are these 2 routines?
30 *
31 * Why is there a redundant initialization vector?
32 *
33 * If only iv3 was used, then, this would till effect have been
34 * outer-cbc. However, there is also a private iv1 == iv2 which
35 * perhaps makes differential analysis easier. On the other hand, the
36 * private iv1 probably makes the CRC-32 attack ineffective. This is a
37 * result of that there is no longer any known iv1 to use when
38 * choosing the X block.
39 */
40void
41SSH_3CBC_ENCRYPT(des_key_schedule ks1,
Damien Miller95def091999-11-25 00:26:21 +110042 des_key_schedule ks2, des_cblock * iv2,
43 des_key_schedule ks3, des_cblock * iv3,
Damien Millerd4a8b7e1999-10-27 13:42:43 +100044 void *dest, void *src,
45 unsigned int len)
46{
Damien Miller95def091999-11-25 00:26:21 +110047 des_cblock iv1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100048
Damien Miller95def091999-11-25 00:26:21 +110049 memcpy(&iv1, iv2, 8);
Damien Millerd4a8b7e1999-10-27 13:42:43 +100050
Damien Miller95def091999-11-25 00:26:21 +110051 des_cbc_encrypt(src, dest, len, ks1, &iv1, DES_ENCRYPT);
Damien Miller84093e91999-12-15 09:06:28 +110052 memcpy(&iv1, (char *)dest + len - 8, 8);
Damien Millerd4a8b7e1999-10-27 13:42:43 +100053
Damien Miller95def091999-11-25 00:26:21 +110054 des_cbc_encrypt(dest, dest, len, ks2, iv2, DES_DECRYPT);
55 memcpy(iv2, &iv1, 8); /* Note how iv1 == iv2 on entry and exit. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100056
Damien Miller95def091999-11-25 00:26:21 +110057 des_cbc_encrypt(dest, dest, len, ks3, iv3, DES_ENCRYPT);
Damien Miller84093e91999-12-15 09:06:28 +110058 memcpy(iv3, (char *)dest + len - 8, 8);
Damien Millerd4a8b7e1999-10-27 13:42:43 +100059}
60
61void
62SSH_3CBC_DECRYPT(des_key_schedule ks1,
Damien Miller95def091999-11-25 00:26:21 +110063 des_key_schedule ks2, des_cblock * iv2,
64 des_key_schedule ks3, des_cblock * iv3,
Damien Millerd4a8b7e1999-10-27 13:42:43 +100065 void *dest, void *src,
66 unsigned int len)
67{
Damien Miller95def091999-11-25 00:26:21 +110068 des_cblock iv1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100069
Damien Miller95def091999-11-25 00:26:21 +110070 memcpy(&iv1, iv2, 8);
Damien Millerd4a8b7e1999-10-27 13:42:43 +100071
Damien Miller95def091999-11-25 00:26:21 +110072 des_cbc_encrypt(src, dest, len, ks3, iv3, DES_DECRYPT);
Damien Miller84093e91999-12-15 09:06:28 +110073 memcpy(iv3, (char *)src + 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, ks2, iv2, DES_ENCRYPT);
Damien Miller84093e91999-12-15 09:06:28 +110076 memcpy(iv2, (char *)dest + len - 8, 8);
Damien Millerd4a8b7e1999-10-27 13:42:43 +100077
Damien Miller95def091999-11-25 00:26:21 +110078 des_cbc_encrypt(dest, dest, len, ks1, &iv1, DES_DECRYPT);
79 /* memcpy(&iv1, iv2, 8); */
80 /* Note how iv1 == iv2 on entry and exit. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100081}
82
83/*
84 * SSH uses a variation on Blowfish, all bytes must be swapped before
85 * and after encryption/decryption. Thus the swap_bytes stuff (yuk).
86 */
Damien Miller95def091999-11-25 00:26:21 +110087static void
Damien Millerd4a8b7e1999-10-27 13:42:43 +100088swap_bytes(const unsigned char *src, unsigned char *dst_, int n)
89{
Damien Miller95def091999-11-25 00:26:21 +110090 /* dst must be properly aligned. */
91 u_int32_t *dst = (u_int32_t *) dst_;
92 union {
93 u_int32_t i;
94 char c[4];
95 } t;
Damien Millerd4a8b7e1999-10-27 13:42:43 +100096
Damien Miller95def091999-11-25 00:26:21 +110097 /* Process 8 bytes every lap. */
98 for (n = n / 8; n > 0; n--) {
99 t.c[3] = *src++;
100 t.c[2] = *src++;
101 t.c[1] = *src++;
102 t.c[0] = *src++;
103 *dst++ = t.i;
104
105 t.c[3] = *src++;
106 t.c[2] = *src++;
107 t.c[1] = *src++;
108 t.c[0] = *src++;
109 *dst++ = t.i;
110 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000111}
112
Damien Miller95def091999-11-25 00:26:21 +1100113void (*cipher_attack_detected) (const char *fmt,...) = fatal;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000114
Damien Miller3b9d5e91999-12-15 09:34:31 +1100115static inline void
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000116detect_cbc_attack(const unsigned char *src,
117 unsigned int len)
118{
Damien Miller95def091999-11-25 00:26:21 +1100119 return;
120
121 log("CRC-32 CBC insertion attack detected");
122 cipher_attack_detected("CRC-32 CBC insertion attack detected");
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000123}
124
Damien Miller5428f641999-11-25 11:54:57 +1100125/*
126 * Names of all encryption algorithms.
127 * These must match the numbers defined in cipher.h.
128 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000129static char *cipher_names[] =
130{
Damien Miller95def091999-11-25 00:26:21 +1100131 "none",
132 "idea",
133 "des",
134 "3des",
135 "tss",
136 "rc4",
137 "blowfish"
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000138};
139
Damien Miller5428f641999-11-25 11:54:57 +1100140/*
141 * Returns a bit mask indicating which ciphers are supported by this
142 * implementation. The bit mask has the corresponding bit set of each
143 * supported cipher.
144 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000145
Damien Miller95def091999-11-25 00:26:21 +1100146unsigned int
147cipher_mask()
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000148{
Damien Miller95def091999-11-25 00:26:21 +1100149 unsigned int mask = 0;
150 mask |= 1 << SSH_CIPHER_3DES; /* Mandatory */
151 mask |= 1 << SSH_CIPHER_BLOWFISH;
152 return mask;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000153}
154
155/* Returns the name of the cipher. */
156
Damien Miller95def091999-11-25 00:26:21 +1100157const char *
158cipher_name(int cipher)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000159{
Damien Miller95def091999-11-25 00:26:21 +1100160 if (cipher < 0 || cipher >= sizeof(cipher_names) / sizeof(cipher_names[0]) ||
161 cipher_names[cipher] == NULL)
162 fatal("cipher_name: bad cipher number: %d", cipher);
163 return cipher_names[cipher];
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000164}
165
Damien Miller5428f641999-11-25 11:54:57 +1100166/*
167 * Parses the name of the cipher. Returns the number of the corresponding
168 * cipher, or -1 on error.
169 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000170
171int
172cipher_number(const char *name)
173{
Damien Miller95def091999-11-25 00:26:21 +1100174 int i;
175 for (i = 0; i < sizeof(cipher_names) / sizeof(cipher_names[0]); i++)
176 if (strcmp(cipher_names[i], name) == 0 &&
177 (cipher_mask() & (1 << i)))
178 return i;
179 return -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000180}
181
Damien Miller5428f641999-11-25 11:54:57 +1100182/*
183 * Selects the cipher, and keys if by computing the MD5 checksum of the
184 * passphrase and using the resulting 16 bytes as the key.
185 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000186
Damien Miller95def091999-11-25 00:26:21 +1100187void
188cipher_set_key_string(CipherContext *context, int cipher,
189 const char *passphrase, int for_encryption)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000190{
Damien Miller95def091999-11-25 00:26:21 +1100191 MD5_CTX md;
192 unsigned char digest[16];
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000193
Damien Miller95def091999-11-25 00:26:21 +1100194 MD5_Init(&md);
195 MD5_Update(&md, (const unsigned char *) passphrase, strlen(passphrase));
196 MD5_Final(digest, &md);
197
198 cipher_set_key(context, cipher, digest, 16, for_encryption);
199
200 memset(digest, 0, sizeof(digest));
201 memset(&md, 0, sizeof(md));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000202}
203
204/* Selects the cipher to use and sets the key. */
205
Damien Miller95def091999-11-25 00:26:21 +1100206void
207cipher_set_key(CipherContext *context, int cipher,
208 const unsigned char *key, int keylen, int for_encryption)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000209{
Damien Miller95def091999-11-25 00:26:21 +1100210 unsigned char padded[32];
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000211
Damien Miller95def091999-11-25 00:26:21 +1100212 /* Set cipher type. */
213 context->type = cipher;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000214
Damien Miller95def091999-11-25 00:26:21 +1100215 /* Get 32 bytes of key data. Pad if necessary. (So that code
216 below does not need to worry about key size). */
217 memset(padded, 0, sizeof(padded));
218 memcpy(padded, key, keylen < sizeof(padded) ? keylen : sizeof(padded));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000219
Damien Miller95def091999-11-25 00:26:21 +1100220 /* Initialize the initialization vector. */
221 switch (cipher) {
222 case SSH_CIPHER_NONE:
Damien Miller5428f641999-11-25 11:54:57 +1100223 /*
224 * Has to stay for authfile saving of private key with no
225 * passphrase
226 */
Damien Miller95def091999-11-25 00:26:21 +1100227 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000228
Damien Miller95def091999-11-25 00:26:21 +1100229 case SSH_CIPHER_3DES:
Damien Miller5428f641999-11-25 11:54:57 +1100230 /*
231 * Note: the least significant bit of each byte of key is
232 * parity, and must be ignored by the implementation. 16
233 * bytes of key are used (first and last keys are the same).
234 */
Damien Miller95def091999-11-25 00:26:21 +1100235 if (keylen < 16)
236 error("Key length %d is insufficient for 3DES.", keylen);
237 des_set_key((void *) padded, context->u.des3.key1);
238 des_set_key((void *) (padded + 8), context->u.des3.key2);
239 if (keylen <= 16)
240 des_set_key((void *) padded, context->u.des3.key3);
241 else
242 des_set_key((void *) (padded + 16), context->u.des3.key3);
243 memset(context->u.des3.iv2, 0, sizeof(context->u.des3.iv2));
244 memset(context->u.des3.iv3, 0, sizeof(context->u.des3.iv3));
245 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000246
Damien Miller95def091999-11-25 00:26:21 +1100247 case SSH_CIPHER_BLOWFISH:
248 BF_set_key(&context->u.bf.key, keylen, padded);
249 memset(context->u.bf.iv, 0, 8);
250 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000251
Damien Miller95def091999-11-25 00:26:21 +1100252 default:
253 fatal("cipher_set_key: unknown cipher: %s", cipher_name(cipher));
254 }
255 memset(padded, 0, sizeof(padded));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000256}
257
258/* Encrypts data using the cipher. */
259
Damien Miller95def091999-11-25 00:26:21 +1100260void
261cipher_encrypt(CipherContext *context, unsigned char *dest,
262 const unsigned char *src, unsigned int len)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000263{
Damien Miller95def091999-11-25 00:26:21 +1100264 if ((len & 7) != 0)
265 fatal("cipher_encrypt: bad plaintext length %d", len);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000266
Damien Miller95def091999-11-25 00:26:21 +1100267 switch (context->type) {
268 case SSH_CIPHER_NONE:
269 memcpy(dest, src, len);
270 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000271
Damien Miller95def091999-11-25 00:26:21 +1100272 case SSH_CIPHER_3DES:
273 SSH_3CBC_ENCRYPT(context->u.des3.key1,
274 context->u.des3.key2, &context->u.des3.iv2,
275 context->u.des3.key3, &context->u.des3.iv3,
276 dest, (void *) src, len);
277 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000278
Damien Miller95def091999-11-25 00:26:21 +1100279 case SSH_CIPHER_BLOWFISH:
280 swap_bytes(src, dest, len);
281 BF_cbc_encrypt(dest, dest, len,
282 &context->u.bf.key, context->u.bf.iv,
283 BF_ENCRYPT);
284 swap_bytes(dest, dest, len);
285 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000286
Damien Miller95def091999-11-25 00:26:21 +1100287 default:
288 fatal("cipher_encrypt: unknown cipher: %s", cipher_name(context->type));
289 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000290}
Damien Miller95def091999-11-25 00:26:21 +1100291
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000292/* Decrypts data using the cipher. */
293
Damien Miller95def091999-11-25 00:26:21 +1100294void
295cipher_decrypt(CipherContext *context, unsigned char *dest,
296 const unsigned char *src, unsigned int len)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000297{
Damien Miller95def091999-11-25 00:26:21 +1100298 if ((len & 7) != 0)
299 fatal("cipher_decrypt: bad ciphertext length %d", len);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000300
Damien Miller95def091999-11-25 00:26:21 +1100301 switch (context->type) {
302 case SSH_CIPHER_NONE:
303 memcpy(dest, src, len);
304 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000305
Damien Miller95def091999-11-25 00:26:21 +1100306 case SSH_CIPHER_3DES:
307 /* CRC-32 attack? */
308 SSH_3CBC_DECRYPT(context->u.des3.key1,
309 context->u.des3.key2, &context->u.des3.iv2,
310 context->u.des3.key3, &context->u.des3.iv3,
311 dest, (void *) src, len);
312 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000313
Damien Miller95def091999-11-25 00:26:21 +1100314 case SSH_CIPHER_BLOWFISH:
315 detect_cbc_attack(src, len);
316 swap_bytes(src, dest, len);
317 BF_cbc_encrypt((void *) dest, dest, len,
318 &context->u.bf.key, context->u.bf.iv,
319 BF_DECRYPT);
320 swap_bytes(dest, dest, len);
321 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000322
Damien Miller95def091999-11-25 00:26:21 +1100323 default:
324 fatal("cipher_decrypt: unknown cipher: %s", cipher_name(context->type));
325 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000326}