2012-02-21 08:52:43 +08:00
|
|
|
--- a/dbutil.h
|
|
|
|
+++ b/dbutil.h
|
2014-08-11 21:02:43 +08:00
|
|
|
@@ -101,7 +101,11 @@ int m_str_to_uint(const char* str, unsig
|
2012-02-21 08:52:43 +08:00
|
|
|
#define DEF_MP_INT(X) mp_int X = {0, 0, 0, NULL}
|
|
|
|
|
|
|
|
/* Dropbear assertion */
|
|
|
|
-#define dropbear_assert(X) do { if (!(X)) { fail_assert(#X, __FILE__, __LINE__); } } while (0)
|
|
|
|
+#ifndef DROPBEAR_ASSERT_ENABLED
|
|
|
|
+#define DROPBEAR_ASSERT_ENABLED 0
|
|
|
|
+#endif
|
|
|
|
+
|
|
|
|
+#define dropbear_assert(X) do { if (DROPBEAR_ASSERT_ENABLED && !(X)) { fail_assert(#X, __FILE__, __LINE__); } } while (0)
|
|
|
|
|
2013-10-10 22:42:05 +08:00
|
|
|
/* Returns 0 if a and b have the same contents */
|
|
|
|
int constant_time_memcmp(const void* a, const void *b, size_t n);
|