Move the ecdh_method struct declaration to ech_lib.c
authortb <tb@openbsd.org>
Sun, 25 Jun 2023 19:14:14 +0000 (19:14 +0000)
committertb <tb@openbsd.org>
Sun, 25 Jun 2023 19:14:14 +0000 (19:14 +0000)
No other file uses this anymore

lib/libcrypto/ecdh/ech_lib.c
lib/libcrypto/ecdh/ech_local.h

index d968793..c537ba0 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: ech_lib.c,v 1.20 2023/06/25 19:04:35 tb Exp $ */
+/* $OpenBSD: ech_lib.c,v 1.21 2023/06/25 19:14:14 tb Exp $ */
 /* ====================================================================
  * Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED.
  *
 #include <openssl/err.h>
 
 #include "ec_local.h"
-#include "ech_local.h"
+
+struct ecdh_method {
+       const char *name;
+       int (*compute_key)(void *key, size_t outlen, const EC_POINT *pub_key, EC_KEY *ecdh,
+           void *(*KDF)(const void *in, size_t inlen, void *out, size_t *outlen));
+       int flags;
+       char *app_data;
+};
 
 static const ECDH_METHOD *default_ECDH_method = NULL;
 
index fefa817..44aa2cf 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: ech_local.h,v 1.4 2023/06/25 18:45:56 tb Exp $ */
+/* $OpenBSD: ech_local.h,v 1.5 2023/06/25 19:14:14 tb Exp $ */
 /* ====================================================================
  * Copyright (c) 2000-2005 The OpenSSL Project.  All rights reserved.
  *
 
 __BEGIN_HIDDEN_DECLS
 
-struct ecdh_method {
-       const char *name;
-       int (*compute_key)(void *key, size_t outlen, const EC_POINT *pub_key, EC_KEY *ecdh,
-           void *(*KDF)(const void *in, size_t inlen, void *out, size_t *outlen));
-       int flags;
-       char *app_data;
-};
-
 /*
  * ECDH Key Derivation Function as defined in ANSI X9.63.
  */