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