summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog1
-rw-r--r--mac.c1
2 files changed, 2 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 05a3b078d..ed58d1ced 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -24,6 +24,7 @@
24 - markus@cvs.openbsd.org 2012/12/11 23:12:13 24 - markus@cvs.openbsd.org 2012/12/11 23:12:13
25 [try-ciphers.sh] 25 [try-ciphers.sh]
26 add hmac-ripemd160-etm@openssh.com 26 add hmac-ripemd160-etm@openssh.com
27 - (djm) [mac.c] fix merge botch
27 28
2820121207 2920121207
29 - (dtucker) OpenBSD CVS Sync 30 - (dtucker) OpenBSD CVS Sync
diff --git a/mac.c b/mac.c
index e55face40..3f2dc6f2a 100644
--- a/mac.c
+++ b/mac.c
@@ -57,6 +57,7 @@ struct {
57 int truncatebits; /* truncate digest if != 0 */ 57 int truncatebits; /* truncate digest if != 0 */
58 int key_len; /* just for UMAC */ 58 int key_len; /* just for UMAC */
59 int len; /* just for UMAC */ 59 int len; /* just for UMAC */
60 int etm; /* Encrypt-then-MAC */
60} macs[] = { 61} macs[] = {
61 /* Encrypt-and-MAC (encrypt-and-authenticate) variants */ 62 /* Encrypt-and-MAC (encrypt-and-authenticate) variants */
62 { "hmac-sha1", SSH_EVP, EVP_sha1, 0, 0, 0, 0 }, 63 { "hmac-sha1", SSH_EVP, EVP_sha1, 0, 0, 0, 0 },