diff options
author | tb <> | 2022-08-29 18:54:06 +0000 |
---|---|---|
committer | tb <> | 2022-08-29 18:54:06 +0000 |
commit | 1d9cee78ea462ea59903e576fe1b6ae3fc717afe (patch) | |
tree | 3c190df84475715671b55d1a2c06b88747b9baac /src | |
parent | c8a324eda35cb6ee505bf0ec7b8f74a58a2c2a01 (diff) | |
download | openbsd-1d9cee78ea462ea59903e576fe1b6ae3fc717afe.tar.gz openbsd-1d9cee78ea462ea59903e576fe1b6ae3fc717afe.tar.bz2 openbsd-1d9cee78ea462ea59903e576fe1b6ae3fc717afe.zip |
missing period
Diffstat (limited to 'src')
-rw-r--r-- | src/lib/libcrypto/bn/bn_bpsw.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libcrypto/bn/bn_bpsw.c b/src/lib/libcrypto/bn/bn_bpsw.c index 93d43afff3..95640deaba 100644 --- a/src/lib/libcrypto/bn/bn_bpsw.c +++ b/src/lib/libcrypto/bn/bn_bpsw.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: bn_bpsw.c,v 1.5 2022/07/29 08:37:33 tb Exp $ */ | 1 | /* $OpenBSD: bn_bpsw.c,v 1.6 2022/08/29 18:54:06 tb Exp $ */ |
2 | /* | 2 | /* |
3 | * Copyright (c) 2022 Martin Grenouilloux <martin.grenouilloux@lse.epita.fr> | 3 | * Copyright (c) 2022 Martin Grenouilloux <martin.grenouilloux@lse.epita.fr> |
4 | * Copyright (c) 2022 Theo Buehler <tb@openbsd.org> | 4 | * Copyright (c) 2022 Theo Buehler <tb@openbsd.org> |
@@ -358,7 +358,7 @@ bn_miller_rabin_base_2(int *is_prime, const BIGNUM *n, BN_CTX *ctx) | |||
358 | 358 | ||
359 | /* | 359 | /* |
360 | * If 2^{2^i k} == -1 (mod n) for some 1 <= i < s, then n is a | 360 | * If 2^{2^i k} == -1 (mod n) for some 1 <= i < s, then n is a |
361 | * 2-pseudoprime | 361 | * 2-pseudoprime. |
362 | */ | 362 | */ |
363 | 363 | ||
364 | for (i = 1; i < s; i++) { | 364 | for (i = 1; i < s; i++) { |