]> andersk Git - openssh.git/blame - kex.c
- stevesk@cvs.openbsd.org 2006/07/22 20:48:23
[openssh.git] / kex.c
CommitLineData
00146caa 1/* $OpenBSD: kex.c,v 1.72 2006/07/22 20:48:23 stevesk Exp $ */
4f8c6159 2/*
a96070d4 3 * Copyright (c) 2000, 2001 Markus Friedl. All rights reserved.
4f8c6159 4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
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.
4f8c6159 13 *
14 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
15 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
16 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
17 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
18 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
19 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
20 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
21 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
23 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24 */
25
26#include "includes.h"
4f8c6159 27
28#include <openssl/crypto.h>
4f8c6159 29
00146caa 30#include <string.h>
31
42f11eb2 32#include "ssh2.h"
33#include "xmalloc.h"
34#include "buffer.h"
35#include "bufaux.h"
36#include "packet.h"
37#include "compat.h"
38#include "cipher.h"
4f8c6159 39#include "kex.h"
fa08c86b 40#include "key.h"
42f11eb2 41#include "log.h"
b2552997 42#include "mac.h"
cab80f75 43#include "match.h"
a5c9ffdb 44#include "dispatch.h"
1853d1ef 45#include "monitor.h"
4f8c6159 46
71276795 47#define KEX_COOKIE_LEN 16
48
30baf904 49#if OPENSSL_VERSION_NUMBER >= 0x00907000L
50# if defined(HAVE_EVP_SHA256)
13ff27b7 51# define evp_ssh_sha256 EVP_sha256
30baf904 52# else
2ff8003a 53extern const EVP_MD *evp_ssh_sha256(void);
30baf904 54# endif
b1f0c612 55#endif
2ff8003a 56
396c147e 57/* prototype */
58static void kex_kexinit_finish(Kex *);
59static void kex_choose_conf(Kex *);
a5c9ffdb 60
61/* put algorithm proposal into buffer */
396c147e 62static void
a5c9ffdb 63kex_prop2buf(Buffer *b, char *proposal[PROPOSAL_MAX])
4f8c6159 64{
2ceb8101 65 u_int i;
a5c9ffdb 66
67 buffer_clear(b);
76bf34f1 68 /*
69 * add a dummy cookie, the cookie will be overwritten by
70 * kex_send_kexinit(), each time a kexinit is set
71 */
72 for (i = 0; i < KEX_COOKIE_LEN; i++)
73 buffer_put_char(b, 0);
4f8c6159 74 for (i = 0; i < PROPOSAL_MAX; i++)
a5c9ffdb 75 buffer_put_cstring(b, proposal[i]);
76 buffer_put_char(b, 0); /* first_kex_packet_follows */
77 buffer_put_int(b, 0); /* uint32 reserved */
4f8c6159 78}
79
a5c9ffdb 80/* parse buffer and return algorithm proposal */
396c147e 81static char **
eed8e583 82kex_buf2prop(Buffer *raw, int *first_kex_follows)
71276795 83{
a5c9ffdb 84 Buffer b;
71276795 85 int i;
a5c9ffdb 86 char **proposal;
71276795 87
52e3daed 88 proposal = xcalloc(PROPOSAL_MAX, sizeof(char *));
a5c9ffdb 89
90 buffer_init(&b);
91 buffer_append(&b, buffer_ptr(raw), buffer_len(raw));
71276795 92 /* skip cookie */
93 for (i = 0; i < KEX_COOKIE_LEN; i++)
a5c9ffdb 94 buffer_get_char(&b);
71276795 95 /* extract kex init proposal strings */
96 for (i = 0; i < PROPOSAL_MAX; i++) {
a5c9ffdb 97 proposal[i] = buffer_get_string(&b,NULL);
98 debug2("kex_parse_kexinit: %s", proposal[i]);
71276795 99 }
a5c9ffdb 100 /* first kex follows / reserved */
101 i = buffer_get_char(&b);
eed8e583 102 if (first_kex_follows != NULL)
103 *first_kex_follows = i;
a5c9ffdb 104 debug2("kex_parse_kexinit: first_kex_follows %d ", i);
105 i = buffer_get_int(&b);
106 debug2("kex_parse_kexinit: reserved %d ", i);
107 buffer_free(&b);
108 return proposal;
71276795 109}
110
396c147e 111static void
a5c9ffdb 112kex_prop_free(char **proposal)
4f8c6159 113{
2ceb8101 114 u_int i;
a5c9ffdb 115
116 for (i = 0; i < PROPOSAL_MAX; i++)
117 xfree(proposal[i]);
118 xfree(proposal);
4f8c6159 119}
120
396c147e 121static void
7819b5c3 122kex_protocol_error(int type, u_int32_t seq, void *ctxt)
4f8c6159 123{
7819b5c3 124 error("Hm, kex protocol error: type %d seq %u", type, seq);
a5c9ffdb 125}
4f8c6159 126
396c147e 127static void
9d726f16 128kex_reset_dispatch(void)
7a37c112 129{
6367063f 130 dispatch_range(SSH2_MSG_TRANSPORT_MIN,
131 SSH2_MSG_TRANSPORT_MAX, &kex_protocol_error);
9d726f16 132 dispatch_set(SSH2_MSG_KEXINIT, &kex_input_kexinit);
7a37c112 133}
134
a5c9ffdb 135void
d8ee838b 136kex_finish(Kex *kex)
a5c9ffdb 137{
9d726f16 138 kex_reset_dispatch();
d8ee838b 139
a5c9ffdb 140 packet_start(SSH2_MSG_NEWKEYS);
141 packet_send();
142 /* packet_write_wait(); */
143 debug("SSH2_MSG_NEWKEYS sent");
4f8c6159 144
a77673cc 145 debug("expecting SSH2_MSG_NEWKEYS");
54a5250f 146 packet_read_expect(SSH2_MSG_NEWKEYS);
b967d870 147 packet_check_eom();
a5c9ffdb 148 debug("SSH2_MSG_NEWKEYS received");
a7ca6275 149
c422989b 150 kex->done = 1;
a5c9ffdb 151 buffer_clear(&kex->peer);
d1ac6175 152 /* buffer_clear(&kex->my); */
a5c9ffdb 153 kex->flags &= ~KEX_INIT_SENT;
a7ca6275 154 xfree(kex->name);
155 kex->name = NULL;
4f8c6159 156}
157
a5c9ffdb 158void
159kex_send_kexinit(Kex *kex)
94ec8c6b 160{
ca75d7de 161 u_int32_t rnd = 0;
76bf34f1 162 u_char *cookie;
2ceb8101 163 u_int i;
76bf34f1 164
7a37c112 165 if (kex == NULL) {
166 error("kex_send_kexinit: no kex, cannot rekey");
167 return;
168 }
d8ee838b 169 if (kex->flags & KEX_INIT_SENT) {
170 debug("KEX_INIT_SENT");
171 return;
172 }
c422989b 173 kex->done = 0;
76bf34f1 174
175 /* generate a random cookie */
176 if (buffer_len(&kex->my) < KEX_COOKIE_LEN)
177 fatal("kex_send_kexinit: kex proposal too short");
178 cookie = buffer_ptr(&kex->my);
179 for (i = 0; i < KEX_COOKIE_LEN; i++) {
180 if (i % 4 == 0)
ca75d7de 181 rnd = arc4random();
182 cookie[i] = rnd;
183 rnd >>= 8;
76bf34f1 184 }
a5c9ffdb 185 packet_start(SSH2_MSG_KEXINIT);
186 packet_put_raw(buffer_ptr(&kex->my), buffer_len(&kex->my));
187 packet_send();
188 debug("SSH2_MSG_KEXINIT sent");
189 kex->flags |= KEX_INIT_SENT;
190}
2b87da3b 191
a5c9ffdb 192void
7819b5c3 193kex_input_kexinit(int type, u_int32_t seq, void *ctxt)
a5c9ffdb 194{
195 char *ptr;
2ceb8101 196 u_int i, dlen;
a5c9ffdb 197 Kex *kex = (Kex *)ctxt;
94ec8c6b 198
a5c9ffdb 199 debug("SSH2_MSG_KEXINIT received");
7a37c112 200 if (kex == NULL)
201 fatal("kex_input_kexinit: no kex, cannot rekey");
94ec8c6b 202
a5c9ffdb 203 ptr = packet_get_raw(&dlen);
204 buffer_append(&kex->peer, ptr, dlen);
94ec8c6b 205
bbb4cc1b 206 /* discard packet */
207 for (i = 0; i < KEX_COOKIE_LEN; i++)
208 packet_get_char();
209 for (i = 0; i < PROPOSAL_MAX; i++)
210 xfree(packet_get_string(NULL));
1169c3df 211 (void) packet_get_char();
212 (void) packet_get_int();
95500969 213 packet_check_eom();
bbb4cc1b 214
a5c9ffdb 215 kex_kexinit_finish(kex);
94ec8c6b 216}
217
a5c9ffdb 218Kex *
d8ee838b 219kex_setup(char *proposal[PROPOSAL_MAX])
4f8c6159 220{
a5c9ffdb 221 Kex *kex;
4f8c6159 222
52e3daed 223 kex = xcalloc(1, sizeof(*kex));
a5c9ffdb 224 buffer_init(&kex->peer);
225 buffer_init(&kex->my);
226 kex_prop2buf(&kex->my, proposal);
c422989b 227 kex->done = 0;
a5c9ffdb 228
229 kex_send_kexinit(kex); /* we start */
9d726f16 230 kex_reset_dispatch();
7a37c112 231
a5c9ffdb 232 return kex;
233}
4f8c6159 234
396c147e 235static void
a5c9ffdb 236kex_kexinit_finish(Kex *kex)
237{
238 if (!(kex->flags & KEX_INIT_SENT))
239 kex_send_kexinit(kex);
240
241 kex_choose_conf(kex);
242
98a58eda 243 if (kex->kex_type >= 0 && kex->kex_type < KEX_MAX &&
244 kex->kex[kex->kex_type] != NULL) {
245 (kex->kex[kex->kex_type])(kex);
246 } else {
a5c9ffdb 247 fatal("Unsupported key exchange %d", kex->kex_type);
4f8c6159 248 }
4f8c6159 249}
250
396c147e 251static void
4f8c6159 252choose_enc(Enc *enc, char *client, char *server)
253{
cab80f75 254 char *name = match_list(client, server, NULL);
4f8c6159 255 if (name == NULL)
256 fatal("no matching cipher found: client %s server %s", client, server);
3ee832e5 257 if ((enc->cipher = cipher_by_name(name)) == NULL)
94ec8c6b 258 fatal("matching cipher is not supported: %s", name);
4f8c6159 259 enc->name = name;
260 enc->enabled = 0;
261 enc->iv = NULL;
262 enc->key = NULL;
3ee832e5 263 enc->key_len = cipher_keylen(enc->cipher);
264 enc->block_size = cipher_blocksize(enc->cipher);
4f8c6159 265}
a7137f6b 266
396c147e 267static void
4f8c6159 268choose_mac(Mac *mac, char *client, char *server)
269{
cab80f75 270 char *name = match_list(client, server, NULL);
4f8c6159 271 if (name == NULL)
272 fatal("no matching mac found: client %s server %s", client, server);
b2552997 273 if (mac_init(mac, name) < 0)
4f8c6159 274 fatal("unsupported mac %s", name);
b2552997 275 /* truncate the key */
276 if (datafellows & SSH_BUG_HMAC)
277 mac->key_len = 16;
4f8c6159 278 mac->name = name;
4f8c6159 279 mac->key = NULL;
280 mac->enabled = 0;
281}
a7137f6b 282
396c147e 283static void
4f8c6159 284choose_comp(Comp *comp, char *client, char *server)
285{
cab80f75 286 char *name = match_list(client, server, NULL);
4f8c6159 287 if (name == NULL)
288 fatal("no matching comp found: client %s server %s", client, server);
07200973 289 if (strcmp(name, "zlib@openssh.com") == 0) {
290 comp->type = COMP_DELAYED;
291 } else if (strcmp(name, "zlib") == 0) {
292 comp->type = COMP_ZLIB;
4f8c6159 293 } else if (strcmp(name, "none") == 0) {
07200973 294 comp->type = COMP_NONE;
4f8c6159 295 } else {
296 fatal("unsupported comp %s", name);
297 }
298 comp->name = name;
299}
a7137f6b 300
396c147e 301static void
4f8c6159 302choose_kex(Kex *k, char *client, char *server)
303{
cab80f75 304 k->name = match_list(client, server, NULL);
4f8c6159 305 if (k->name == NULL)
306 fatal("no kex alg");
94ec8c6b 307 if (strcmp(k->name, KEX_DH1) == 0) {
98a58eda 308 k->kex_type = KEX_DH_GRP1_SHA1;
47e5dc72 309 k->evp_md = EVP_sha1();
41e5bd9a 310 } else if (strcmp(k->name, KEX_DH14) == 0) {
311 k->kex_type = KEX_DH_GRP14_SHA1;
47e5dc72 312 k->evp_md = EVP_sha1();
313 } else if (strcmp(k->name, KEX_DHGEX_SHA1) == 0) {
98a58eda 314 k->kex_type = KEX_DH_GEX_SHA1;
47e5dc72 315 k->evp_md = EVP_sha1();
30baf904 316#if OPENSSL_VERSION_NUMBER >= 0x00907000L
2ff8003a 317 } else if (strcmp(k->name, KEX_DHGEX_SHA256) == 0) {
318 k->kex_type = KEX_DH_GEX_SHA256;
319 k->evp_md = evp_ssh_sha256();
30baf904 320#endif
94ec8c6b 321 } else
4f8c6159 322 fatal("bad kex alg %s", k->name);
323}
47e5dc72 324
396c147e 325static void
4f8c6159 326choose_hostkeyalg(Kex *k, char *client, char *server)
327{
cab80f75 328 char *hostkeyalg = match_list(client, server, NULL);
fa08c86b 329 if (hostkeyalg == NULL)
4f8c6159 330 fatal("no hostkey alg");
fa08c86b 331 k->hostkey_type = key_type_from_name(hostkeyalg);
332 if (k->hostkey_type == KEY_UNSPEC)
333 fatal("bad hostkey alg '%s'", hostkeyalg);
eea39c02 334 xfree(hostkeyalg);
4f8c6159 335}
336
aff51935 337static int
eed8e583 338proposals_match(char *my[PROPOSAL_MAX], char *peer[PROPOSAL_MAX])
339{
340 static int check[] = {
341 PROPOSAL_KEX_ALGS, PROPOSAL_SERVER_HOST_KEY_ALGS, -1
342 };
343 int *idx;
344 char *p;
345
346 for (idx = &check[0]; *idx != -1; idx++) {
347 if ((p = strchr(my[*idx], ',')) != NULL)
348 *p = '\0';
349 if ((p = strchr(peer[*idx], ',')) != NULL)
350 *p = '\0';
351 if (strcmp(my[*idx], peer[*idx]) != 0) {
352 debug2("proposal mismatch: my %s peer %s",
353 my[*idx], peer[*idx]);
354 return (0);
355 }
356 }
357 debug2("proposals match");
358 return (1);
359}
360
396c147e 361static void
d1ac6175 362kex_choose_conf(Kex *kex)
4f8c6159 363{
d1ac6175 364 Newkeys *newkeys;
a5c9ffdb 365 char **my, **peer;
366 char **cprop, **sprop;
d1ac6175 367 int nenc, nmac, ncomp;
2ceb8101 368 u_int mode, ctos, need;
eed8e583 369 int first_kex_follows, type;
4f8c6159 370
eed8e583 371 my = kex_buf2prop(&kex->my, NULL);
372 peer = kex_buf2prop(&kex->peer, &first_kex_follows);
a5c9ffdb 373
d1ac6175 374 if (kex->server) {
a5c9ffdb 375 cprop=peer;
376 sprop=my;
377 } else {
378 cprop=my;
379 sprop=peer;
380 }
4f8c6159 381
c422989b 382 /* Algorithm Negotiation */
4f8c6159 383 for (mode = 0; mode < MODE_MAX; mode++) {
52e3daed 384 newkeys = xcalloc(1, sizeof(*newkeys));
c422989b 385 kex->newkeys[mode] = newkeys;
d1ac6175 386 ctos = (!kex->server && mode == MODE_OUT) || (kex->server && mode == MODE_IN);
4f8c6159 387 nenc = ctos ? PROPOSAL_ENC_ALGS_CTOS : PROPOSAL_ENC_ALGS_STOC;
388 nmac = ctos ? PROPOSAL_MAC_ALGS_CTOS : PROPOSAL_MAC_ALGS_STOC;
389 ncomp = ctos ? PROPOSAL_COMP_ALGS_CTOS : PROPOSAL_COMP_ALGS_STOC;
d1ac6175 390 choose_enc (&newkeys->enc, cprop[nenc], sprop[nenc]);
391 choose_mac (&newkeys->mac, cprop[nmac], sprop[nmac]);
392 choose_comp(&newkeys->comp, cprop[ncomp], sprop[ncomp]);
4f8c6159 393 debug("kex: %s %s %s %s",
394 ctos ? "client->server" : "server->client",
d1ac6175 395 newkeys->enc.name,
396 newkeys->mac.name,
397 newkeys->comp.name);
4f8c6159 398 }
d1ac6175 399 choose_kex(kex, cprop[PROPOSAL_KEX_ALGS], sprop[PROPOSAL_KEX_ALGS]);
400 choose_hostkeyalg(kex, cprop[PROPOSAL_SERVER_HOST_KEY_ALGS],
4f8c6159 401 sprop[PROPOSAL_SERVER_HOST_KEY_ALGS]);
4f8c6159 402 need = 0;
403 for (mode = 0; mode < MODE_MAX; mode++) {
c422989b 404 newkeys = kex->newkeys[mode];
3ee832e5 405 if (need < newkeys->enc.key_len)
406 need = newkeys->enc.key_len;
407 if (need < newkeys->enc.block_size)
408 need = newkeys->enc.block_size;
d1ac6175 409 if (need < newkeys->mac.key_len)
410 need = newkeys->mac.key_len;
4f8c6159 411 }
71276795 412 /* XXX need runden? */
d1ac6175 413 kex->we_need = need;
a5c9ffdb 414
eed8e583 415 /* ignore the next message if the proposals do not match */
aff51935 416 if (first_kex_follows && !proposals_match(my, peer) &&
4e2e5cfd 417 !(datafellows & SSH_BUG_FIRSTKEX)) {
eed8e583 418 type = packet_read();
419 debug2("skipping next packet (type %u)", type);
420 }
421
a5c9ffdb 422 kex_prop_free(my);
423 kex_prop_free(peer);
a5c9ffdb 424}
425
396c147e 426static u_char *
47e5dc72 427derive_key(Kex *kex, int id, u_int need, u_char *hash, u_int hashlen,
428 BIGNUM *shared_secret)
a5c9ffdb 429{
430 Buffer b;
a5c9ffdb 431 EVP_MD_CTX md;
432 char c = id;
2ceb8101 433 u_int have;
47e5dc72 434 int mdsz;
2ceb8101 435 u_char *digest;
56964485 436
47e5dc72 437 if ((mdsz = EVP_MD_size(kex->evp_md)) <= 0)
438 fatal("bad kex md size %d", mdsz);
b4bbf172 439 digest = xmalloc(roundup(need, mdsz));
a5c9ffdb 440
441 buffer_init(&b);
442 buffer_put_bignum2(&b, shared_secret);
443
c422989b 444 /* K1 = HASH(K || H || "A" || session_id) */
47e5dc72 445 EVP_DigestInit(&md, kex->evp_md);
eef7adcb 446 if (!(datafellows & SSH_BUG_DERIVEKEY))
447 EVP_DigestUpdate(&md, buffer_ptr(&b), buffer_len(&b));
47e5dc72 448 EVP_DigestUpdate(&md, hash, hashlen);
c422989b 449 EVP_DigestUpdate(&md, &c, 1);
d1ac6175 450 EVP_DigestUpdate(&md, kex->session_id, kex->session_id_len);
a5c9ffdb 451 EVP_DigestFinal(&md, digest, NULL);
452
c422989b 453 /*
454 * expand key:
455 * Kn = HASH(K || H || K1 || K2 || ... || Kn-1)
456 * Key = K1 || K2 || ... || Kn
457 */
a5c9ffdb 458 for (have = mdsz; need > have; have += mdsz) {
47e5dc72 459 EVP_DigestInit(&md, kex->evp_md);
eef7adcb 460 if (!(datafellows & SSH_BUG_DERIVEKEY))
461 EVP_DigestUpdate(&md, buffer_ptr(&b), buffer_len(&b));
47e5dc72 462 EVP_DigestUpdate(&md, hash, hashlen);
a5c9ffdb 463 EVP_DigestUpdate(&md, digest, have);
464 EVP_DigestFinal(&md, digest + have, NULL);
465 }
466 buffer_free(&b);
467#ifdef DEBUG_KEX
468 fprintf(stderr, "key '%c'== ", c);
469 dump_digest("key", digest, need);
470#endif
471 return digest;
4f8c6159 472}
473
c422989b 474Newkeys *current_keys[MODE_MAX];
d1ac6175 475
cab80f75 476#define NKEYS 6
a5c9ffdb 477void
47e5dc72 478kex_derive_keys(Kex *kex, u_char *hash, u_int hashlen, BIGNUM *shared_secret)
4f8c6159 479{
1e3b8b07 480 u_char *keys[NKEYS];
2ceb8101 481 u_int i, mode, ctos;
4f8c6159 482
47e5dc72 483 for (i = 0; i < NKEYS; i++) {
484 keys[i] = derive_key(kex, 'A'+i, kex->we_need, hash, hashlen,
485 shared_secret);
486 }
4f8c6159 487
a77673cc 488 debug2("kex_derive_keys");
4f8c6159 489 for (mode = 0; mode < MODE_MAX; mode++) {
c422989b 490 current_keys[mode] = kex->newkeys[mode];
491 kex->newkeys[mode] = NULL;
a7137f6b 492 ctos = (!kex->server && mode == MODE_OUT) ||
493 (kex->server && mode == MODE_IN);
c422989b 494 current_keys[mode]->enc.iv = keys[ctos ? 0 : 1];
495 current_keys[mode]->enc.key = keys[ctos ? 2 : 3];
496 current_keys[mode]->mac.key = keys[ctos ? 4 : 5];
4f8c6159 497 }
4f8c6159 498}
a5c9ffdb 499
d1ac6175 500Newkeys *
501kex_get_newkeys(int mode)
502{
c422989b 503 Newkeys *ret;
504
505 ret = current_keys[mode];
506 current_keys[mode] = NULL;
507 return ret;
d1ac6175 508}
509
8bbf1fa6 510void
511derive_ssh1_session_id(BIGNUM *host_modulus, BIGNUM *server_modulus,
512 u_int8_t cookie[8], u_int8_t id[16])
513{
514 const EVP_MD *evp_md = EVP_md5();
515 EVP_MD_CTX md;
516 u_int8_t nbuf[2048], obuf[EVP_MAX_MD_SIZE];
517 int len;
518
519 EVP_DigestInit(&md, evp_md);
520
521 len = BN_num_bytes(host_modulus);
2ceb8101 522 if (len < (512 / 8) || (u_int)len > sizeof(nbuf))
8bbf1fa6 523 fatal("%s: bad host modulus (len %d)", __func__, len);
524 BN_bn2bin(host_modulus, nbuf);
525 EVP_DigestUpdate(&md, nbuf, len);
526
527 len = BN_num_bytes(server_modulus);
2ceb8101 528 if (len < (512 / 8) || (u_int)len > sizeof(nbuf))
8bbf1fa6 529 fatal("%s: bad server modulus (len %d)", __func__, len);
530 BN_bn2bin(server_modulus, nbuf);
531 EVP_DigestUpdate(&md, nbuf, len);
532
533 EVP_DigestUpdate(&md, cookie, 8);
534
59657003 535 EVP_DigestFinal(&md, obuf, NULL);
8bbf1fa6 536 memcpy(id, obuf, 16);
537
538 memset(nbuf, 0, sizeof(nbuf));
539 memset(obuf, 0, sizeof(obuf));
540 memset(&md, 0, sizeof(md));
541}
542
a5c9ffdb 543#if defined(DEBUG_KEX) || defined(DEBUG_KEXDH)
544void
545dump_digest(char *msg, u_char *digest, int len)
546{
2ceb8101 547 u_int i;
a5c9ffdb 548
549 fprintf(stderr, "%s\n", msg);
6aacefa7 550 for (i = 0; i< len; i++) {
a5c9ffdb 551 fprintf(stderr, "%02x", digest[i]);
552 if (i%32 == 31)
553 fprintf(stderr, "\n");
554 else if (i%8 == 7)
555 fprintf(stderr, " ");
556 }
557 fprintf(stderr, "\n");
558}
559#endif
This page took 0.727399 seconds and 5 git commands to generate.