diff options
author | tb <> | 2024-11-02 15:58:49 +0000 |
---|---|---|
committer | tb <> | 2024-11-02 15:58:49 +0000 |
commit | 1f030b484ee11824e7f0695edfa9eafd0efffcf0 (patch) | |
tree | 5b69316c213d84f022afd03c3dd013a3e2bdcaf9 /src/lib/libcrypto/ec/ecp_smpl.c | |
parent | 04277a8a70494b7b35dc16881dea60c36382073c (diff) | |
download | openbsd-1f030b484ee11824e7f0695edfa9eafd0efffcf0.tar.gz openbsd-1f030b484ee11824e7f0695edfa9eafd0efffcf0.tar.bz2 openbsd-1f030b484ee11824e7f0695edfa9eafd0efffcf0.zip |
Fix includes in ec_lib and ecp_smpl
Diffstat (limited to '')
-rw-r--r-- | src/lib/libcrypto/ec/ecp_smpl.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/lib/libcrypto/ec/ecp_smpl.c b/src/lib/libcrypto/ec/ecp_smpl.c index 5890ca994a..7f9612b7df 100644 --- a/src/lib/libcrypto/ec/ecp_smpl.c +++ b/src/lib/libcrypto/ec/ecp_smpl.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: ecp_smpl.c,v 1.58 2024/11/02 15:50:50 tb Exp $ */ | 1 | /* $OpenBSD: ecp_smpl.c,v 1.59 2024/11/02 15:58:49 tb Exp $ */ |
2 | /* Includes code written by Lenka Fibikova <fibikova@exp-math.uni-essen.de> | 2 | /* Includes code written by Lenka Fibikova <fibikova@exp-math.uni-essen.de> |
3 | * for the OpenSSL project. | 3 | * for the OpenSSL project. |
4 | * Includes code written by Bodo Moeller for the OpenSSL project. | 4 | * Includes code written by Bodo Moeller for the OpenSSL project. |
@@ -62,7 +62,12 @@ | |||
62 | * and contributed to the OpenSSL project. | 62 | * and contributed to the OpenSSL project. |
63 | */ | 63 | */ |
64 | 64 | ||
65 | #include <stdlib.h> | ||
66 | |||
67 | #include <openssl/bn.h> | ||
68 | #include <openssl/ec.h> | ||
65 | #include <openssl/err.h> | 69 | #include <openssl/err.h> |
70 | #include <openssl/objects.h> | ||
66 | 71 | ||
67 | #include "bn_local.h" | 72 | #include "bn_local.h" |
68 | #include "ec_local.h" | 73 | #include "ec_local.h" |