I encountered a build issue when compiling the project on a system using OpenSSL 3.0. The error occurs because MD4_Init, MD4_Update, and related functions are marked as deprecated in OpenSSL 3.0, causing the build to fail when warnings are treated as errors (-Werror flag).
To resolve the issue, I modified the Makefile to suppress the warnings by adding -Wno-deprecated-declarations to CFLAGS:
CFLAGS += -Wno-deprecated-declarations