ech_key.c: Fix includes
authortb <tb@openbsd.org>
Sun, 2 Jul 2023 02:28:20 +0000 (02:28 +0000)
committertb <tb@openbsd.org>
Sun, 2 Jul 2023 02:28:20 +0000 (02:28 +0000)
We need stdint.h for uintptr_t, stdlib.h for malloc, ec.h for various
things, but there's no need for objects. or sha.h.

lib/libcrypto/ecdh/ech_key.c

index 8418073..4c4a3f1 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: ech_key.c,v 1.29 2023/07/01 15:10:28 tb Exp $ */
+/* $OpenBSD: ech_key.c,v 1.30 2023/07/02 02:28:20 tb Exp $ */
 /* ====================================================================
  * Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED.
  *
  */
 
 #include <limits.h>
+#include <stdint.h>
+#include <stdlib.h>
 #include <string.h>
 
 #include <openssl/opensslconf.h>
 
 #include <openssl/bn.h>
+#include <openssl/ec.h>
 #include <openssl/ecdh.h>
 #include <openssl/err.h>
-#include <openssl/objects.h>
-#include <openssl/sha.h>
 
 #include "ec_local.h"