Make _sign and _verify functions take a buffer* rather than void* and int

--HG--
branch : ecc
This commit is contained in:
Matt Johnston
2013-04-06 16:00:37 +08:00
parent b4bcc60657
commit a8135dec1e
11 changed files with 40 additions and 63 deletions

View File

@@ -59,6 +59,7 @@ buffer * buf_getstringbuf(buffer *buf);
void buf_eatstring(buffer *buf);
void buf_putint(buffer* buf, unsigned int val);
void buf_putstring(buffer* buf, const unsigned char* str, unsigned int len);
void buf_putstringbuf(buffer *buf, const buffer* buf_str);
void buf_putbytes(buffer *buf, const unsigned char *bytes, unsigned int len);
void buf_putmpint(buffer* buf, mp_int * mp);
int buf_getmpint(buffer* buf, mp_int* mp);