diff options
author | Damien Miller <djm@mindrot.org> | 2007-06-11 14:01:42 +1000 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2007-06-11 14:01:42 +1000 |
commit | e45796f7b425c04b6ba2d1f72e22c0cb6b3322ef (patch) | |
tree | 4882ccdb6184b1cf259ff916c2f716f3d1238f93 /monitor_wrap.c | |
parent | 835284b74c984600aa50ebac527c37238027b4da (diff) |
- pvalchev@cvs.openbsd.org 2007/06/07 19:37:34
[kex.h mac.c mac.h monitor_wrap.c myproposal.h packet.c ssh.1]
[ssh_config.5 sshd.8 sshd_config.5]
Add a new MAC algorithm for data integrity, UMAC-64 (not default yet,
must specify umac-64@openssh.com). Provides about 20% end-to-end speedup
compared to hmac-md5. Represents a different approach to message
authentication to that of HMAC that may be beneficial if HMAC based on
one of its underlying hash algorithms is found to be vulnerable to a
new attack. http://www.ietf.org/rfc/rfc4418.txt
in conjunction with and OK djm@
Diffstat (limited to 'monitor_wrap.c')
-rw-r--r-- | monitor_wrap.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/monitor_wrap.c b/monitor_wrap.c index 61f7c6889..edf2814e5 100644 --- a/monitor_wrap.c +++ b/monitor_wrap.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: monitor_wrap.c,v 1.56 2007/06/05 06:52:37 djm Exp $ */ | 1 | /* $OpenBSD: monitor_wrap.c,v 1.57 2007/06/07 19:37:34 pvalchev Exp $ */ |
2 | /* | 2 | /* |
3 | * Copyright 2002 Niels Provos <provos@citi.umich.edu> | 3 | * Copyright 2002 Niels Provos <provos@citi.umich.edu> |
4 | * Copyright 2002 Markus Friedl <markus@openbsd.org> | 4 | * Copyright 2002 Markus Friedl <markus@openbsd.org> |
@@ -477,7 +477,7 @@ mm_newkeys_from_blob(u_char *blob, int blen) | |||
477 | /* Mac structure */ | 477 | /* Mac structure */ |
478 | mac->name = buffer_get_string(&b, NULL); | 478 | mac->name = buffer_get_string(&b, NULL); |
479 | if (mac->name == NULL || mac_setup(mac, mac->name) == -1) | 479 | if (mac->name == NULL || mac_setup(mac, mac->name) == -1) |
480 | fatal("%s: can not init mac %s", __func__, mac->name); | 480 | fatal("%s: can not setup mac %s", __func__, mac->name); |
481 | mac->enabled = buffer_get_int(&b); | 481 | mac->enabled = buffer_get_int(&b); |
482 | mac->key = buffer_get_string(&b, &len); | 482 | mac->key = buffer_get_string(&b, &len); |
483 | if (len > mac->key_len) | 483 | if (len > mac->key_len) |