libntlm

Implements Microsoft's NTLM authentication protocol for client-server communication.

brewmacoslinux
Try with needOr install directly
Source

About

Implements Microsoft's NTLM authentication

Examples

check if libntlm is installed and see version info$ brew info libntlm
use libntlm in C code for NTLM authentication$ gcc -o auth_client auth_client.c $(pkg-config --cflags --libs libntlm)
find libntlm header files location on system$ brew --prefix libntlm && ls $(brew --prefix libntlm)/include
link against libntlm library when compiling$ gcc -o app app.c -L$(brew --prefix libntlm)/lib -lntlm
verify libntlm library is properly installed$ ldconfig -p | grep libntlm || otool -L /usr/local/lib/libntlm.dylib