Add a few missing headers and drop a few unused ones
authortb <tb@openbsd.org>
Tue, 6 Dec 2022 18:23:29 +0000 (18:23 +0000)
committertb <tb@openbsd.org>
Tue, 6 Dec 2022 18:23:29 +0000 (18:23 +0000)
In bn_test.c include bn_local.h instead of using copy-pasted prototypes.

regress/lib/libcrypto/bn/bn_isqrt.c
regress/lib/libcrypto/bn/bn_mod_sqrt.c
regress/lib/libcrypto/bn/bn_mont.c
regress/lib/libcrypto/bn/bn_primes.c
regress/lib/libcrypto/bn/bn_test.c
regress/lib/libcrypto/bn/bn_to_string.c
regress/lib/libcrypto/bn/bn_unit.c

index a730322..b1cacea 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: bn_isqrt.c,v 1.1 2022/12/01 20:50:10 tb Exp $ */
+/*     $OpenBSD: bn_isqrt.c,v 1.2 2022/12/06 18:23:29 tb Exp $ */
 /*
  * Copyright (c) 2022 Theo Buehler <tb@openbsd.org>
  *
@@ -16,6 +16,9 @@
  */
 
 #include <err.h>
+#include <stdint.h>
+#include <stdio.h>
+#include <stdlib.h>
 #include <string.h>
 #include <unistd.h>
 
index e193755..7757c2a 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: bn_mod_sqrt.c,v 1.1 2022/12/01 20:50:10 tb Exp $ */
+/*     $OpenBSD: bn_mod_sqrt.c,v 1.2 2022/12/06 18:23:29 tb Exp $ */
 /*
  * Copyright (c) 2022 Theo Buehler <tb@openbsd.org>
  *
@@ -15,6 +15,8 @@
  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  */
 
+#include <stdio.h>
+
 #include <openssl/bn.h>
 
 /* Test that sqrt * sqrt = A (mod p) where p is a prime */
index d7c8f95..4bcc79d 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: bn_mont.c,v 1.1 2022/12/01 20:50:10 tb Exp $  */
+/*     $OpenBSD: bn_mont.c,v 1.2 2022/12/06 18:23:29 tb Exp $  */
 
 /*
  * Copyright (c) 2014 Miodrag Vallat.
  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  */
 
+#include <err.h>
 #include <stdio.h>
 #include <stdlib.h>
-#include <string.h>
-#include <err.h>
 
 #include <openssl/bn.h>
 #include <openssl/crypto.h>
index e9a91ba..cd552dc 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: bn_primes.c,v 1.1 2022/12/01 20:50:10 tb Exp $ */
+/*     $OpenBSD: bn_primes.c,v 1.2 2022/12/06 18:23:29 tb Exp $ */
 /*
  * Copyright (c) 2022 Theo Buehler <tb@openbsd.org>
  *
  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  */
 
+#include <stdint.h>
+#include <stdio.h>
+#include <stdlib.h>
+
 #include <openssl/bn.h>
 
 #include "bn_prime.h"
index c1fedde..ed61f86 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: bn_test.c,v 1.1 2022/12/01 20:50:10 tb Exp $  */
+/*     $OpenBSD: bn_test.c,v 1.2 2022/12/06 18:23:29 tb Exp $  */
 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
  * All rights reserved.
  *
 
 #include <openssl/bio.h>
 #include <openssl/bn.h>
-#include <openssl/x509.h>
 #include <openssl/err.h>
 
-int BN_mod_exp_ct(BIGNUM *r, const BIGNUM *a, const BIGNUM *p,
-    const BIGNUM *m, BN_CTX *ctx);
-int BN_mod_exp_nonct(BIGNUM *r, const BIGNUM *a, const BIGNUM *p,
-    const BIGNUM *m, BN_CTX *ctx);
-int BN_mod_exp_mont_ct(BIGNUM *r, const BIGNUM *a, const BIGNUM *p,
-    const BIGNUM *m, BN_CTX *ctx, BN_MONT_CTX *m_ctx);
-int BN_mod_exp_mont_nonct(BIGNUM *r, const BIGNUM *a, const BIGNUM *p,
-    const BIGNUM *m, BN_CTX *ctx, BN_MONT_CTX *m_ctx);
-
-int BN_bntest_rand(BIGNUM *rnd, int bits, int top, int bottom);
+#include "bn_local.h"
 
 const int num0 = 100; /* number of tests */
 const int num1 = 50;  /* additional tests for some functions */
index ca5ca2f..2275f98 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: bn_to_string.c,v 1.1 2022/12/01 20:50:10 tb Exp $ */
+/*     $OpenBSD: bn_to_string.c,v 1.2 2022/12/06 18:23:29 tb Exp $ */
 /*
  * Copyright (c) 2019 Theo Buehler <tb@openbsd.org>
  *
@@ -17,6 +17,7 @@
 
 #include <err.h>
 #include <stdio.h>
+#include <stdlib.h>
 #include <string.h>
 
 #include <openssl/bn.h>
index b4e4a77..1af3e88 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: bn_unit.c,v 1.1 2022/12/01 20:50:10 tb Exp $ */
+/*     $OpenBSD: bn_unit.c,v 1.2 2022/12/06 18:23:29 tb Exp $ */
 
 /*
  * Copyright (c) 2022 Theo Buehler <tb@openbsd.org>
@@ -18,6 +18,7 @@
 
 #include <err.h>
 #include <limits.h>
+#include <stdio.h>
 #include <stdlib.h>
 #include <string.h>