Open a garbage bin at the bottom of evp_names.c
authortb <tb@openbsd.org>
Sat, 13 Jan 2024 12:13:17 +0000 (12:13 +0000)
committertb <tb@openbsd.org>
Sat, 13 Jan 2024 12:13:17 +0000 (12:13 +0000)
First to move is EVP_cleanup(), which should probably be moved to an
evp_lib.c if such a file is reinstated.

lib/libcrypto/evp/evp_names.c
lib/libcrypto/evp/names.c

index 660e23f..26e1df2 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: evp_names.c,v 1.4 2024/01/13 11:12:32 tb Exp $ */
+/*     $OpenBSD: evp_names.c,v 1.5 2024/01/13 12:13:17 tb Exp $ */
 /*
  * Copyright (c) 2023 Theo Buehler <tb@openbsd.org>
  *
@@ -1760,3 +1760,14 @@ EVP_get_digestbyname(const char *name)
 
        return digest->digest();
 }
+
+/*
+ * XXX - this is here because most of its job was to clean up the dynamic
+ * tables of ciphers and digests. If we get an evp_lib.c again, it should
+ * probably move there.
+ */
+
+void
+EVP_cleanup(void)
+{
+}
index a0b1991..7b5f6ba 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: names.c,v 1.29 2024/01/13 11:57:51 tb Exp $ */
+/* $OpenBSD: names.c,v 1.30 2024/01/13 12:13:17 tb Exp $ */
 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
  * All rights reserved.
  *
@@ -75,8 +75,3 @@ EVP_add_digest(const EVP_MD *md)
 {
        return 1;
 }
-
-void
-EVP_cleanup(void)
-{
-}