diff options
author | Theo Buehler <tb@cvs.openbsd.org> | 2024-10-31 05:47:38 +0000 |
---|---|---|
committer | Theo Buehler <tb@cvs.openbsd.org> | 2024-10-31 05:47:38 +0000 |
commit | 416db1d1cdb05a4adc981e54c9fea22c819720ca (patch) | |
tree | 59a1fdeec04f3744287d85724012f3764495d9eb /lib/libcrypto/ec | |
parent | c4e414f744f85fc5c693b4002219cf8880473f74 (diff) |
ecp_oct.c no longer needs bytestring and stdint
Diffstat (limited to 'lib/libcrypto/ec')
-rw-r--r-- | lib/libcrypto/ec/ecp_oct.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/lib/libcrypto/ec/ecp_oct.c b/lib/libcrypto/ec/ecp_oct.c index 0f4d8cb5512..6daab41870a 100644 --- a/lib/libcrypto/ec/ecp_oct.c +++ b/lib/libcrypto/ec/ecp_oct.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ecp_oct.c,v 1.30 2024/10/30 18:16:34 tb Exp $ */ +/* $OpenBSD: ecp_oct.c,v 1.31 2024/10/31 05:47:37 tb Exp $ */ /* Includes code written by Lenka Fibikova <fibikova@exp-math.uni-essen.de> * for the OpenSSL project. * Includes code written by Bodo Moeller for the OpenSSL project. @@ -63,7 +63,6 @@ */ #include <stddef.h> -#include <stdint.h> #include <openssl/bn.h> #include <openssl/ec.h> @@ -71,8 +70,6 @@ #include "ec_local.h" -#include "bytestring.h" - int ec_GFp_simple_set_compressed_coordinates(const EC_GROUP *group, EC_POINT *point, const BIGNUM *x_, int y_bit, BN_CTX *ctx) |