summaryrefslogtreecommitdiffhomepage
path: root/dss.h
diff options
context:
space:
mode:
authorMatt Johnston <matt@ucc.asn.au>2013-04-06 16:00:37 +0800
committerMatt Johnston <matt@ucc.asn.au>2013-04-06 16:00:37 +0800
commita8135dec1e8b9360274679c9ff89cb98cda87930 (patch)
tree42cf334c3aac754cdf1a1fb4a9ed0789d49d16b0 /dss.h
parentb4bcc606576dab755441da1bc2fbe28041d54b06 (diff)
Make _sign and _verify functions take a buffer* rather than void* and int
--HG-- branch : ecc
Diffstat (limited to 'dss.h')
-rw-r--r--dss.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/dss.h b/dss.h
index 4331b9a..57400ad 100644
--- a/dss.h
+++ b/dss.h
@@ -43,11 +43,9 @@ typedef struct {
} dropbear_dss_key;
-void buf_put_dss_sign(buffer* buf, dropbear_dss_key *key, const unsigned char* data,
- unsigned int len);
+void buf_put_dss_sign(buffer* buf, dropbear_dss_key *key, buffer *data_buf);
#ifdef DROPBEAR_SIGNKEY_VERIFY
-int buf_dss_verify(buffer* buf, dropbear_dss_key *key, const unsigned char* data,
- unsigned int len);
+int buf_dss_verify(buffer* buf, dropbear_dss_key *key, buffer *data_buf);
#endif
int buf_get_dss_pub_key(buffer* buf, dropbear_dss_key *key);
int buf_get_dss_priv_key(buffer* buf, dropbear_dss_key *key);