From 88038b4e949d309e642597db877c285de378cc19 Mon Sep 17 00:00:00 2001 From: jsing Date: Thu, 9 Feb 2023 09:58:53 +0000 Subject: [PATCH] Pull in bn_internal.h for the generic version of bn_umul_hilo() --- lib/libcrypto/bn/bn_sqr.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/libcrypto/bn/bn_sqr.c b/lib/libcrypto/bn/bn_sqr.c index 940cdd33bde..bd5f43bb939 100644 --- a/lib/libcrypto/bn/bn_sqr.c +++ b/lib/libcrypto/bn/bn_sqr.c @@ -1,4 +1,4 @@ -/* $OpenBSD: bn_sqr.c,v 1.23 2023/02/09 09:16:26 jsing Exp $ */ +/* $OpenBSD: bn_sqr.c,v 1.24 2023/02/09 09:58:53 jsing Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -62,6 +62,7 @@ #include "bn_arch.h" #include "bn_local.h" +#include "bn_internal.h" int bn_sqr(BIGNUM *r, const BIGNUM *a, int max, BN_CTX *ctx); -- 2.20.1