openvpn/tests/ntlm_support.c
Frank Lichtenheld ae82631be1 Fix memory leak in ntlm_support
Not really important but prevents running the NTLM
t_client tests with ASAN enabled.

Change-Id: If472398d4ff8323de485f084a07160b365dfc501
Signed-off-by: Frank Lichtenheld <frank@lichtenheld.com>
Acked-by: Lev Stipakov <lstipakov@gmail.com>
Message-Id: <20241209194957.358-1-gert@greenie.muc.de>
URL: https://www.mail-archive.com/openvpn-devel@lists.sourceforge.net/msg30049.html
Signed-off-by: Gert Doering <gert@greenie.muc.de>
2024-12-09 21:06:14 +01:00

57 lines
1.6 KiB
C

/*
* OpenVPN -- An application to securely tunnel IP networks
* over a single UDP port, with support for SSL/TLS-based
* session authentication and key exchange,
* packet encryption, packet authentication, and
* packet compression.
*
* Copyright (C) 2023-2024 OpenVPN Inc <sales@openvpn.net>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2
* as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "syshead.h"
#include "crypto.h"
#include "error.h"
int
main(void)
{
#ifdef NTLM
#if defined(ENABLE_CRYPTO_OPENSSL)
provider_t *legacy = crypto_load_provider("legacy");
provider_t *def = crypto_load_provider("default");
#endif
if (!md_valid("MD4"))
{
msg(M_FATAL, "MD4 not supported");
}
if (!md_valid("MD5"))
{
msg(M_FATAL, "MD5 not supported");
}
#if defined(ENABLE_CRYPTO_OPENSSL)
crypto_unload_provider("legacy", legacy);
crypto_unload_provider("default", def);
#endif
#else /* ifdef NTLM */
msg(M_FATAL, "NTLM support not compiled in");
#endif
}