From: Mark Wooding Date: Wed, 23 Oct 2019 03:05:21 +0000 (+0100) Subject: pub/dh-kcdsa.c: Fix commentary blunder. X-Git-Tag: 2.6.0~40 X-Git-Url: https://git.distorted.org.uk/~mdw/catacomb/commitdiff_plain/23a83acc57af124c24226d5df3676862c31be4f1 pub/dh-kcdsa.c: Fix commentary blunder. --- diff --git a/pub/dh-kcdsa.c b/pub/dh-kcdsa.c index 5feda92f..4de00c66 100644 --- a/pub/dh-kcdsa.c +++ b/pub/dh-kcdsa.c @@ -68,7 +68,7 @@ int dh_kcdsagen(dh_param *dp, unsigned ql, unsigned pl, int i; mp *x; - /* --- First trick: find %$q$% --- */ + /* --- First trick: find %$v$% --- */ pf.step = 2; x = mprand(MP_NEW, pl - ql, r, 1); @@ -78,7 +78,7 @@ int dh_kcdsagen(dh_param *dp, unsigned ql, unsigned pl, if (!x) goto fail_0; - /* --- Second trick: find %$p$% and %$v$% --- */ + /* --- Second trick: find %$p$% and %$q$% --- */ x = mp_lsl(x, x, 1); sp[0].add = MP_ZERO; sp[0].mul = MP_ONE; sp[0].f = 0;