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