Libsodium-net - Não foi possível carregar a DLL 'libsodium.dll

Instalei o Libsodium-net através do NuGet e consigo incluir sódio nas minhas aulas, mas quando tento executá-lo, recebo

Uma exceção do tipo 'System.DllNotFoundException' ocorreu no Sodium.dll, mas não foi tratada no código do usuário

Informações adicionais: Não foi possível carregar a DLL 'libsodium.dll': O módulo especificado não pôde ser encontrado. (Exceção de HRESULT: 0x8007007E)

Estou apenas tentando executar o código de exemplo da documentação do gitbookshttps://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;

//this will produce a 512 byte hash
var hash = PasswordHash.ScryptHashBinary(PASSWORD, SALT,      PasswordHash.Strength.Medium, OUTPUT_LENGTH);

questionAnswers(2)

yourAnswerToTheQuestion