]> git.ipfire.org Git - thirdparty/nettle.git/commitdiff
Comment improvement
authorNiels Möller <nisse@lysator.liu.se>
Fri, 6 Nov 2020 20:54:51 +0000 (21:54 +0100)
committerNiels Möller <nisse@lysator.liu.se>
Fri, 6 Nov 2020 20:54:51 +0000 (21:54 +0100)
ecc-internal.h

index a84387a92d010d34fa2f68dafe225e6a7426cda5..d7d0fe072d94a697c77affcff5f6f6b278a9401b 100644 (file)
@@ -281,7 +281,7 @@ ecc_mod_pow_2k_mul (const struct ecc_modulo *m,
                    unsigned k, const mp_limb_t *yp,
                    mp_limb_t *tp);
 
-/* R <-- X^{2^k + 1} */
+/* R <-- X^{2^k + 1}. Here, rp and xp must not overlap. */
 #define ecc_mod_pow_2kp1(m, rp, xp, k, tp) \
   ecc_mod_pow_2k_mul (m, rp, xp, k, xp, tp)