diff options
author | tb <> | 2022-10-11 13:52:23 +0000 |
---|---|---|
committer | tb <> | 2022-10-11 13:52:23 +0000 |
commit | 97dd2cd0e521799dfc6b2124c0e847fb7f404b8d (patch) | |
tree | a7ff369a3233eaa6faab1e03f29c06bdae285f92 /src | |
parent | 3038773ba07048cc73b6ed35ed5ed2c27bcd835d (diff) | |
download | openbsd-97dd2cd0e521799dfc6b2124c0e847fb7f404b8d.tar.gz openbsd-97dd2cd0e521799dfc6b2124c0e847fb7f404b8d.tar.bz2 openbsd-97dd2cd0e521799dfc6b2124c0e847fb7f404b8d.zip |
Fix path of mentioned regress test
Diffstat (limited to 'src')
-rw-r--r-- | src/lib/libcrypto/bn/bn_isqrt.c | 4 |
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 | ||
165 | const uint8_t is_square_mod_11[] = { | 165 | const uint8_t is_square_mod_11[] = { |