diff options
author | Joel Sing <jsing@cvs.openbsd.org> | 2023-02-09 09:58:54 +0000 |
---|---|---|
committer | Joel Sing <jsing@cvs.openbsd.org> | 2023-02-09 09:58:54 +0000 |
commit | 2fabc76642a67aff37bd1bc7a29710fb8d023275 (patch) | |
tree | f412ebd7d2c4dfa875e88d103ac120d3ad6d2540 /lib | |
parent | 8a1ba7681a61079f63c6c3c99ee08d8d2038d1e5 (diff) |
Pull in bn_internal.h for the generic version of bn_umul_hilo()
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libcrypto/bn/bn_sqr.c | 3 |
1 files changed, 2 insertions, 1 deletions
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); |