summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--dbutil.c8
-rw-r--r--dbutil.h1
2 files changed, 9 insertions, 0 deletions
diff --git a/dbutil.c b/dbutil.c
index 044388a..f2fe5b9 100644
--- a/dbutil.c
+++ b/dbutil.c
@@ -651,6 +651,14 @@ void printhex(const char * label, const unsigned char * buf, int len) {
}
fprintf(stderr, "\n");
}
+
+void printmpint(const char *label, mp_int *mp) {
+ buffer *buf = buf_new(1000);
+ buf_putmpint(buf, mp);
+ printhex(label, buf->data, buf->len);
+ buf_free(buf);
+
+}
#endif
/* Strip all control characters from text (a null-terminated string), except
diff --git a/dbutil.h b/dbutil.h
index 0f16bf3..5be3465 100644
--- a/dbutil.h
+++ b/dbutil.h
@@ -58,6 +58,7 @@ void fail_assert(const char* expr, const char* file, int line) ATTRIB_NORETURN;
#ifdef DEBUG_TRACE
void dropbear_trace(const char* format, ...) ATTRIB_PRINTF(1,2);
void printhex(const char * label, const unsigned char * buf, int len);
+void printmpint(const char *label, mp_int *mp);
extern int debug_trace;
#endif