How could i use "libzip" Module?

I’ve added this module in build.cs,
PublicDependencyModuleNames.AddRange(new string[] { "Core", "CoreUObject", "Engine","libzip"});

and referenced it in cpp,
#include "libzip/zip.h"

but when I compile, I get this error. LNK2019: unresolved external symbol

I looked it up and found that BCryptOpenAlgorithmProvider comes from bcrypt.h in the Windows Kit, but I’m not sure what went wrong. How can I fix this error?

Maybe you could try to use PublicAdditionalLibraries.Add("NAME_OF_LIB.lib"); in your .Build.cs script?
That’s how I loaded system libraries before.