summaryrefslogtreecommitdiffstats
path: root/compat
diff options
context:
space:
mode:
authorRoy Marples <roy@marples.name>2019-05-04 11:05:17 +0100
committerRoy Marples <roy@marples.name>2019-05-04 11:05:17 +0100
commit8b214d11b7c9bd57bcbae4f43d62a6359391dcd0 (patch)
tree94f79933c5fa66ea083f65ed295d0ca3a99f662e /compat
parent480d88cc9b843e14eacbaeaf751a5bf9ff0645ce (diff)
parent4ecd0553190666b1be927b286217eb56b5271629 (diff)
downloaddhcpcd-8b214d11b7c9bd57bcbae4f43d62a6359391dcd0.tar.xz
Merge branch 'master' into rbtree
Diffstat (limited to 'compat')
-rw-r--r--compat/consttime_memequal.h28
1 files changed, 28 insertions, 0 deletions
diff --git a/compat/consttime_memequal.h b/compat/consttime_memequal.h
new file mode 100644
index 00000000..98306484
--- /dev/null
+++ b/compat/consttime_memequal.h
@@ -0,0 +1,28 @@
+/*
+ * Written by Matthias Drochner <drochner@NetBSD.org>.
+ * Public domain.
+ */
+
+#ifndef CONSTTIME_MEMEQUAL_H
+#define CONSTTIME_MEMEQUAL_H
+inline static int
+consttime_memequal(const void *b1, const void *b2, size_t len)
+{
+ const unsigned char *c1 = b1, *c2 = b2;
+ unsigned int res = 0;
+
+ while (len--)
+ res |= *c1++ ^ *c2++;
+
+ /*
+ * Map 0 to 1 and [1, 256) to 0 using only constant-time
+ * arithmetic.
+ *
+ * This is not simply `!res' because although many CPUs support
+ * branchless conditional moves and many compilers will take
+ * advantage of them, certain compilers generate branches on
+ * certain CPUs for `!res'.
+ */
+ return (1 & ((res - 1) >> 8));
+}
+#endif /* CONSTTIME_MEMEQUAL_H */