aboutsummaryrefslogtreecommitdiff
path: root/util.h
diff options
context:
space:
mode:
authorMarkus Teich <markus.teich@stusta.mhn.de>2016-06-28 22:04:43 +0200
committerMarkus Teich <markus.teich@stusta.mhn.de>2016-06-28 22:04:43 +0200
commite25578ad259462ba0d8a5d8174507561ef4e900a (patch)
tree1daa7f55e81dbb02ccfc91963f05e0d2a42b5d05 /util.h
parentde119e0327bee578821f45f1ec8465be3bec7854 (diff)
add debugging shortcuts for points and mpis
Diffstat (limited to 'util.h')
-rw-r--r--util.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/util.h b/util.h
index 6d4a72f..d21cc89 100644
--- a/util.h
+++ b/util.h
@@ -39,6 +39,9 @@ eprintf("Assertion failed in file %s line %d function %s:", __FILE__, __LINE__,
# define brandt_assert_gpgerr(errnum) (!(errnum) ? (void)(0) : \
eprintf("Assertion failed in file %s line %d function %s: %s", __FILE__, __LINE__, __PRETTY_FUNCTION__, gcry_strerror((errnum))))
+# define DP(point) ((void)(gcry_log_debugpnt (#point, point, ec_ctx)))
+# define DM(mpi) ((void)(gcry_log_debugmpi (#mpi, mpi, ec_ctx)))
+
#else
# define brandt_assert(expr) ((void)(expr))