summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjsing <>2023-02-09 09:58:53 +0000
committerjsing <>2023-02-09 09:58:53 +0000
commitf2f2db10ed42ebd4f9671cb82c8e2e70d6422eb6 (patch)
treee9a917d7a8b677c18397a7382e2a6c68d7581baa
parent73e3da07ba716b16d6e9e6e33c5bc42aaefa41d9 (diff)
downloadopenbsd-f2f2db10ed42ebd4f9671cb82c8e2e70d6422eb6.tar.gz
openbsd-f2f2db10ed42ebd4f9671cb82c8e2e70d6422eb6.tar.bz2
openbsd-f2f2db10ed42ebd4f9671cb82c8e2e70d6422eb6.zip
Pull in bn_internal.h for the generic version of bn_umul_hilo()
-rw-r--r--src/lib/libcrypto/bn/bn_sqr.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/libcrypto/bn/bn_sqr.c b/src/lib/libcrypto/bn/bn_sqr.c
index 940cdd33bd..bd5f43bb93 100644
--- a/src/lib/libcrypto/bn/bn_sqr.c
+++ b/src/lib/libcrypto/bn/bn_sqr.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: bn_sqr.c,v 1.23 2023/02/09 09:16:26 jsing Exp $ */ 1/* $OpenBSD: bn_sqr.c,v 1.24 2023/02/09 09:58:53 jsing Exp $ */
2/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) 2/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
3 * All rights reserved. 3 * All rights reserved.
4 * 4 *
@@ -62,6 +62,7 @@
62 62
63#include "bn_arch.h" 63#include "bn_arch.h"
64#include "bn_local.h" 64#include "bn_local.h"
65#include "bn_internal.h"
65 66
66int bn_sqr(BIGNUM *r, const BIGNUM *a, int max, BN_CTX *ctx); 67int bn_sqr(BIGNUM *r, const BIGNUM *a, int max, BN_CTX *ctx);
67 68