From 23a83acc57af124c24226d5df3676862c31be4f1 Mon Sep 17 00:00:00 2001 From: Mark Wooding Date: Wed, 23 Oct 2019 04:05:21 +0100 Subject: [PATCH] pub/dh-kcdsa.c: Fix commentary blunder. --- pub/dh-kcdsa.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; -- 2.11.0