summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/lib/libcrypto/bn/bn_isqrt.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libcrypto/bn/bn_isqrt.c b/src/lib/libcrypto/bn/bn_isqrt.c
index 19e31eab34..cc6f722679 100644
--- a/src/lib/libcrypto/bn/bn_isqrt.c
+++ b/src/lib/libcrypto/bn/bn_isqrt.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: bn_isqrt.c,v 1.2 2022/07/13 11:20:00 tb Exp $ */ 1/* $OpenBSD: bn_isqrt.c,v 1.3 2022/10/11 13:52:23 tb Exp $ */
2/* 2/*
3 * Copyright (c) 2022 Theo Buehler <tb@openbsd.org> 3 * Copyright (c) 2022 Theo Buehler <tb@openbsd.org>
4 * 4 *
@@ -159,7 +159,7 @@ bn_isqrt(BIGNUM *out_sqrt, int *out_perfect, const BIGNUM *n, BN_CTX *in_ctx)
159 159
160/* 160/*
161 * is_square_mod_N[r % N] indicates whether r % N has a square root modulo N. 161 * is_square_mod_N[r % N] indicates whether r % N has a square root modulo N.
162 * The tables are generated in regress/lib/libcrypto/bn/bn_isqrt.c. 162 * The tables are generated in regress/lib/libcrypto/bn/general/bn_isqrt.c.
163 */ 163 */
164 164
165const uint8_t is_square_mod_11[] = { 165const uint8_t is_square_mod_11[] = {