Add #include "bn_lcl.h" to the files that will soon need it.
authortb <tb@openbsd.org>
Sat, 4 Dec 2021 16:08:32 +0000 (16:08 +0000)
committertb <tb@openbsd.org>
Sat, 4 Dec 2021 16:08:32 +0000 (16:08 +0000)
ok inoguchi jsing

15 files changed:
lib/libcrypto/asn1/t_pkey.c
lib/libcrypto/dh/dh_depr.c
lib/libcrypto/dh/dh_pmeth.c
lib/libcrypto/dsa/dsa_depr.c
lib/libcrypto/dsa/dsa_pmeth.c
lib/libcrypto/ec/ec_kmeth.c
lib/libcrypto/ec/ec_lcl.h
lib/libcrypto/ec/ec_pmeth.c
lib/libcrypto/ecdh/ech_key.c
lib/libcrypto/ecdsa/ecs_sign.c
lib/libcrypto/ecdsa/ecs_vrf.c
lib/libcrypto/evp/pmeth_gn.c
lib/libcrypto/rsa/rsa_depr.c
lib/libcrypto/rsa/rsa_pmeth.c
lib/libcrypto/ts/ts_lib.c

index b3f7d08..a307381 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: t_pkey.c,v 1.16 2014/07/11 08:44:47 jsing Exp $ */
+/* $OpenBSD: t_pkey.c,v 1.17 2021/12/04 16:08:32 tb Exp $ */
 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
  * All rights reserved.
  *
@@ -62,6 +62,8 @@
 #include <openssl/buffer.h>
 #include <openssl/objects.h>
 
+#include "bn_lcl.h"
+
 int
 ASN1_bn_print(BIO *bp, const char *number, const BIGNUM *num,
     unsigned char *buf, int off)
index 0b75b0b..717482c 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: dh_depr.c,v 1.6 2014/07/11 08:44:48 jsing Exp $ */
+/* $OpenBSD: dh_depr.c,v 1.7 2021/12/04 16:08:32 tb Exp $ */
 /* ====================================================================
  * Copyright (c) 1998-2002 The OpenSSL Project.  All rights reserved.
  *
@@ -62,6 +62,8 @@
 #include <openssl/bn.h>
 #include <openssl/dh.h>
 
+#include "bn_lcl.h"
+
 #ifndef OPENSSL_NO_DEPRECATED
 DH *
 DH_generate_parameters(int prime_len, int generator,
index 24d16ff..0dda6bb 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: dh_pmeth.c,v 1.10 2017/01/29 17:49:22 beck Exp $ */
+/* $OpenBSD: dh_pmeth.c,v 1.11 2021/12/04 16:08:32 tb Exp $ */
 /* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL
  * project 2006.
  */
@@ -67,6 +67,7 @@
 #include <openssl/evp.h>
 #include <openssl/x509.h>
 
+#include "bn_lcl.h"
 #include "evp_locl.h"
 
 /* DH pkey context structure */
index 269cd63..673e700 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: dsa_depr.c,v 1.7 2014/10/18 17:20:40 jsing Exp $ */
+/* $OpenBSD: dsa_depr.c,v 1.8 2021/12/04 16:08:32 tb Exp $ */
 /* ====================================================================
  * Copyright (c) 1998-2002 The OpenSSL Project.  All rights reserved.
  *
@@ -68,6 +68,8 @@
 #include <openssl/evp.h>
 #include <openssl/sha.h>
 
+#include "bn_lcl.h"
+
 #ifndef OPENSSL_NO_DEPRECATED
 DSA *
 DSA_generate_parameters(int bits, unsigned char *seed_in, int seed_len,
index dd0da34..ef89e2b 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: dsa_pmeth.c,v 1.12 2019/09/09 18:06:25 jsing Exp $ */
+/* $OpenBSD: dsa_pmeth.c,v 1.13 2021/12/04 16:08:32 tb Exp $ */
 /* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL
  * project 2006.
  */
@@ -66,6 +66,7 @@
 #include <openssl/evp.h>
 #include <openssl/x509.h>
 
+#include "bn_lcl.h"
 #include "dsa_locl.h"
 #include "evp_locl.h"
 
index 1fb9e57..4203dff 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: ec_kmeth.c,v 1.5 2019/05/10 19:15:06 bcook Exp $      */
+/*     $OpenBSD: ec_kmeth.c,v 1.6 2021/12/04 16:08:32 tb Exp $ */
 /*
  * Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL
  * project.
@@ -58,6 +58,7 @@
 #endif
 #include <openssl/err.h>
 
+#include "bn_lcl.h"
 #include "ec_lcl.h"
 #include "ecs_locl.h"
 
index ced04c7..7a74699 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: ec_lcl.h,v 1.18 2021/09/08 17:29:21 tb Exp $ */
+/* $OpenBSD: ec_lcl.h,v 1.19 2021/12/04 16:08:32 tb Exp $ */
 /*
  * Originally written by Bodo Moeller for the OpenSSL project.
  */
@@ -76,6 +76,8 @@
 #include <openssl/ecdsa.h>
 #include <openssl/bn.h>
 
+#include "bn_lcl.h"
+
 __BEGIN_HIDDEN_DECLS
 
 #if defined(__SUNPRO_C)
index c57d26a..63e6359 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: ec_pmeth.c,v 1.12 2019/09/09 18:06:25 jsing Exp $ */
+/* $OpenBSD: ec_pmeth.c,v 1.13 2021/12/04 16:08:32 tb Exp $ */
 /* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL
  * project 2006.
  */
@@ -66,6 +66,7 @@
 #include <openssl/evp.h>
 #include <openssl/x509.h>
 
+#include "bn_lcl.h"
 #include "ec_lcl.h"
 #include "ech_locl.h"
 #include "evp_locl.h"
index e59ce8b..797cb01 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: ech_key.c,v 1.11 2021/04/20 17:23:37 tb Exp $ */
+/* $OpenBSD: ech_key.c,v 1.12 2021/12/04 16:08:32 tb Exp $ */
 /* ====================================================================
  * Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED.
  *
@@ -77,6 +77,7 @@
 #include <openssl/obj_mac.h>
 #include <openssl/sha.h>
 
+#include "bn_lcl.h"
 #include "ech_locl.h"
 #include "ec_lcl.h"
 
index 5beb853..54c9963 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: ecs_sign.c,v 1.7 2019/01/19 01:07:00 tb Exp $ */
+/* $OpenBSD: ecs_sign.c,v 1.8 2021/12/04 16:08:32 tb Exp $ */
 /* ====================================================================
  * Copyright (c) 1998-2002 The OpenSSL Project.  All rights reserved.
  *
@@ -59,6 +59,7 @@
 #include <openssl/engine.h>
 #endif
 
+#include "bn_lcl.h"
 #include "ecs_locl.h"
 #include "ec_lcl.h"
 
index 4c1bc85..def130c 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: ecs_vrf.c,v 1.7 2019/01/19 01:12:48 tb Exp $ */
+/* $OpenBSD: ecs_vrf.c,v 1.8 2021/12/04 16:08:32 tb Exp $ */
 /*
  * Written by Nils Larsch for the OpenSSL project
  */
 
 #include <openssl/opensslconf.h>
 
+#include "bn_lcl.h"
 #include "ecs_locl.h"
 #include "ec_lcl.h"
+
 #ifndef OPENSSL_NO_ENGINE
 #include <openssl/engine.h>
 #endif
index 7f5311a..066291b 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: pmeth_gn.c,v 1.7 2021/11/18 18:05:27 tb Exp $ */
+/* $OpenBSD: pmeth_gn.c,v 1.8 2021/12/04 16:08:32 tb Exp $ */
 /* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL
  * project 2006.
  */
@@ -64,6 +64,7 @@
 #include <openssl/evp.h>
 #include <openssl/objects.h>
 
+#include "bn_lcl.h"
 #include "evp_locl.h"
 
 int
index b830a22..54a669c 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: rsa_depr.c,v 1.8 2014/07/11 08:44:49 jsing Exp $ */
+/* $OpenBSD: rsa_depr.c,v 1.9 2021/12/04 16:08:32 tb Exp $ */
 /* ====================================================================
  * Copyright (c) 1998-2002 The OpenSSL Project.  All rights reserved.
  *
@@ -64,6 +64,8 @@
 #include <openssl/bn.h>
 #include <openssl/rsa.h>
 
+#include "bn_lcl.h"
+
 #ifndef OPENSSL_NO_DEPRECATED
 
 RSA *
index 008d425..36a2a27 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: rsa_pmeth.c,v 1.32 2019/10/31 14:05:30 jsing Exp $ */
+/* $OpenBSD: rsa_pmeth.c,v 1.33 2021/12/04 16:08:32 tb Exp $ */
 /* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL
  * project 2006.
  */
@@ -70,6 +70,7 @@
 #include <openssl/x509.h>
 #include <openssl/x509v3.h>
 
+#include "bn_lcl.h"
 #include "evp_locl.h"
 #include "rsa_locl.h"
 
index cdfa9db..b6d50a3 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: ts_lib.c,v 1.11 2021/11/01 20:53:08 tb Exp $ */
+/* $OpenBSD: ts_lib.c,v 1.12 2021/12/04 16:08:32 tb Exp $ */
 /* Written by Zoltan Glozik (zglozik@stones.com) for the OpenSSL
  * project 2002.
  */
@@ -64,6 +64,7 @@
 #include <openssl/ts.h>
 #include <openssl/x509v3.h>
 
+#include "bn_lcl.h"
 #include "x509_lcl.h"
 
 /* Local function declarations. */