summaryrefslogtreecommitdiffhomepage
path: root/dbutil.c
diff options
context:
space:
mode:
Diffstat (limited to 'dbutil.c')
-rw-r--r--dbutil.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/dbutil.c b/dbutil.c
index bdeb10c..b194e3d 100644
--- a/dbutil.c
+++ b/dbutil.c
@@ -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;
+}
+