First to move is EVP_cleanup(), which should probably be moved to an
evp_lib.c if such a file is reinstated.
-/* $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>
*
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)
+{
+}
-/* $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.
*
{
return 1;
}
-
-void
-EVP_cleanup(void)
-{
-}