diff options
author | Matt Johnston <matt@ucc.asn.au> | 2013-10-20 21:07:05 +0800 |
---|---|---|
committer | Matt Johnston <matt@ucc.asn.au> | 2013-10-20 21:07:05 +0800 |
commit | 27510a6e9eb8f54a8f109fa9f29481e8f8170862 (patch) | |
tree | 3f2bc382407148b2e3eae7ecccce24e645ff5340 /dbutil.c | |
parent | 7fda6418e15a92fd538a5e72682de94f90b6e060 (diff) | |
parent | 45bd0edae52c07daa2d54ca7f7c0a57d51130791 (diff) |
merge
--HG--
branch : ecc
Diffstat (limited to 'dbutil.c')
-rw-r--r-- | dbutil.c | 13 |
1 files changed, 13 insertions, 0 deletions
@@ -892,3 +892,16 @@ int m_str_to_uint(const char* str, unsigned int *val) { return DROPBEAR_SUCCESS; } } + +int constant_time_memcmp(const void* a, const void *b, size_t n) +{ + const char *xa = a, *xb = b; + uint8_t c = 0; + size_t i; + for (i = 0; i < n; i++) + { + c |= (xa[i] ^ xb[i]); + } + return c; +} + |