summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorMatt Johnston <matt@ucc.asn.au>2004-08-24 04:07:41 +0000
committerMatt Johnston <matt@ucc.asn.au>2004-08-24 04:07:41 +0000
commit0ab18bd14c1a64d128fd0606611f812b1c797277 (patch)
tree19861506ed5e89e5fbcb4b2c4c29ef618fe5e1d3
parentaaac206345aad73cb516611b103f8a003d54f445 (diff)
parent5a053fb6fc209bc3f01b8dcc5d4a040ffb50e3b2 (diff)
merge of 5c31199418631253a3d311fe3b1ff87351e1c9ca
and c84edf4a78416c5c3172871d3c74d7fd64afab2d --HG-- extra : convert_revision : 37d06b8560f822a1636a17e8f4739f6ab68f20ce
-rw-r--r--gendss.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/gendss.c b/gendss.c
index e1b502d..d589722 100644
--- a/gendss.c
+++ b/gendss.c
@@ -33,6 +33,8 @@
#define QSIZE 20 /* 160 bit */
+/* This is just a test */
+
#ifdef DROPBEAR_DSS
static void getq(dss_key *key);
@@ -150,7 +152,6 @@ static void getp(dss_key *key, unsigned int size) {
static void getg(dss_key * key) {
- char printbuf[1000];
DEF_MP_INT(div);
DEF_MP_INT(h);
DEF_MP_INT(val);
@@ -183,8 +184,6 @@ static void getg(dss_key * key) {
} while (mp_cmp_d(key->g, 1) != MP_GT);
- mp_toradix(key->g, printbuf, 10);
-
mp_clear_multi(&div, &h, &val, NULL);
}