summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authortb <>2022-08-31 21:34:14 +0000
committertb <>2022-08-31 21:34:14 +0000
commit6d2b7349d4d2b2a2cda9c056a499da4cb8c64986 (patch)
tree9d0efd8aafe9373ae83aa0fa41cac70c95d76020 /src
parentcfb01fc9e5c84ba0076e950fbfe012c2f465258b (diff)
downloadopenbsd-6d2b7349d4d2b2a2cda9c056a499da4cb8c64986.tar.gz
openbsd-6d2b7349d4d2b2a2cda9c056a499da4cb8c64986.tar.bz2
openbsd-6d2b7349d4d2b2a2cda9c056a499da4cb8c64986.zip
Add an empty line for consistency.
Diffstat (limited to 'src')
-rw-r--r--src/lib/libcrypto/bn/bn_bpsw.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/libcrypto/bn/bn_bpsw.c b/src/lib/libcrypto/bn/bn_bpsw.c
index 95640deaba..2f8cbba342 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.6 2022/08/29 18:54:06 tb Exp $ */ 1/* $OpenBSD: bn_bpsw.c,v 1.7 2022/08/31 21:34:14 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>
@@ -303,6 +303,7 @@ bn_strong_lucas_selfridge(int *is_prime, const BIGNUM *n, BN_CTX *ctx)
303/* 303/*
304 * Miller-Rabin primality test for base 2. 304 * Miller-Rabin primality test for base 2.
305 */ 305 */
306
306static int 307static int
307bn_miller_rabin_base_2(int *is_prime, const BIGNUM *n, BN_CTX *ctx) 308bn_miller_rabin_base_2(int *is_prime, const BIGNUM *n, BN_CTX *ctx)
308{ 309{