summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-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);
}