merge of 5c31199418631253a3d311fe3b1ff87351e1c9ca

and c84edf4a78416c5c3172871d3c74d7fd64afab2d

--HG--
extra : convert_revision : 37d06b8560f822a1636a17e8f4739f6ab68f20ce
This commit is contained in:
Matt Johnston 2004-08-24 04:07:41 +00:00
commit 0ab18bd14c

View File

@ -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);
}