summaryrefslogtreecommitdiffhomepage
path: root/packet.c
diff options
context:
space:
mode:
authorMatt Johnston <matt@ucc.asn.au>2013-10-20 21:07:05 +0800
committerMatt Johnston <matt@ucc.asn.au>2013-10-20 21:07:05 +0800
commit27510a6e9eb8f54a8f109fa9f29481e8f8170862 (patch)
tree3f2bc382407148b2e3eae7ecccce24e645ff5340 /packet.c
parent7fda6418e15a92fd538a5e72682de94f90b6e060 (diff)
parent45bd0edae52c07daa2d54ca7f7c0a57d51130791 (diff)
merge
--HG-- branch : ecc
Diffstat (limited to 'packet.c')
-rw-r--r--packet.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/packet.c b/packet.c
index d458ccf..4ebd0d7 100644
--- a/packet.c
+++ b/packet.c
@@ -376,7 +376,7 @@ static int checkmac() {
/* compare the hash */
buf_setpos(ses.readbuf, contents_len);
- if (memcmp(mac_bytes, buf_getptr(ses.readbuf, mac_size), mac_size) != 0) {
+ if (constant_time_memcmp(mac_bytes, buf_getptr(ses.readbuf, mac_size), mac_size) != 0) {
return DROPBEAR_FAILURE;
} else {
return DROPBEAR_SUCCESS;