I installed Libsodium-net via NuGet and can include Sodium in my classes, but when I try to run it, I get
An exception of type 'System.DllNotFoundException' occurred in Sodium.dll but was not processed in user code
Additional information: Failed to load DLL 'libsodium.dll': the specified module was not found. (Exception from HRESULT: 0x8007007E)
I'm just trying to run sample code from the gitbooks documentation https://bitbeans.gitbooks.io/libsodium-net/content/password_hashing/index.html
const string PASSWORD = "Correct Horse Battery Staple"; const string SALT = "qa~t](84z<1t<1oz: ik.@IRNyhG =8q(o"; const long OUTPUT_LENGTH = 512;
Question
source share