Move ECDH_size() to ech_key.c
authortb <tb@openbsd.org>
Sun, 25 Jun 2023 19:17:43 +0000 (19:17 +0000)
committertb <tb@openbsd.org>
Sun, 25 Jun 2023 19:17:43 +0000 (19:17 +0000)
This way the public ECDH API that will remain in libcrypto is in one file
and the public ECDH API that will go is in the other one.

lib/libcrypto/ecdh/ech_key.c
lib/libcrypto/ecdh/ech_lib.c

index 5f68b01..208a4b3 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: ech_key.c,v 1.16 2023/06/25 19:04:35 tb Exp $ */
+/* $OpenBSD: ech_key.c,v 1.17 2023/06/25 19:17:43 tb Exp $ */
 /* ====================================================================
  * Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED.
  *
@@ -199,3 +199,9 @@ ECDH_compute_key(void *out, size_t outlen, const EC_POINT *pub_key,
        ECerror(EC_R_NOT_IMPLEMENTED);
        return 0;
 }
+
+int
+ECDH_size(const EC_KEY *d)
+{
+       return ((EC_GROUP_get_degree(EC_KEY_get0_group(d)) + 7) / 8);
+}
index c537ba0..eb1b6bf 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: ech_lib.c,v 1.21 2023/06/25 19:14:14 tb Exp $ */
+/* $OpenBSD: ech_lib.c,v 1.22 2023/06/25 19:17:43 tb Exp $ */
 /* ====================================================================
  * Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED.
  *
@@ -138,9 +138,3 @@ ECDH_get_ex_data(EC_KEY *d, int idx)
 {
        return NULL;
 }
-
-int
-ECDH_size(const EC_KEY *d)
-{
-       return ((EC_GROUP_get_degree(EC_KEY_get0_group(d)) + 7) / 8);
-}