diff options
author | jsing <> | 2023-02-09 09:58:53 +0000 |
---|---|---|
committer | jsing <> | 2023-02-09 09:58:53 +0000 |
commit | 9a4301621b4b224b3bd56f9777545a2c215358e0 (patch) | |
tree | e9a917d7a8b677c18397a7382e2a6c68d7581baa /src | |
parent | 270a7fa5b0dcd84c8c8239f5abd043cfd7498ab6 (diff) | |
download | openbsd-9a4301621b4b224b3bd56f9777545a2c215358e0.tar.gz openbsd-9a4301621b4b224b3bd56f9777545a2c215358e0.tar.bz2 openbsd-9a4301621b4b224b3bd56f9777545a2c215358e0.zip |
Pull in bn_internal.h for the generic version of bn_umul_hilo()
Diffstat (limited to 'src')
-rw-r--r-- | src/lib/libcrypto/bn/bn_sqr.c | 3 |
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 | ||
66 | int bn_sqr(BIGNUM *r, const BIGNUM *a, int max, BN_CTX *ctx); | 67 | int bn_sqr(BIGNUM *r, const BIGNUM *a, int max, BN_CTX *ctx); |
67 | 68 | ||