diff options
author | Matt Johnston <matt@ucc.asn.au> | 2013-04-08 23:12:35 +0800 |
---|---|---|
committer | Matt Johnston <matt@ucc.asn.au> | 2013-04-08 23:12:35 +0800 |
commit | a7d1a9cfcb54a29571b504cbfa955b3e34755a72 (patch) | |
tree | 02a45cb1b89ad7a34a622ab686cfa41834e2dc62 /dbutil.c | |
parent | 48c83aa9d0f46ec0cdc92a7a3b9cb1e39ffaf2e3 (diff) |
add printmpint() for debugging
--HG--
branch : ecc
Diffstat (limited to 'dbutil.c')
-rw-r--r-- | dbutil.c | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -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 |