How to build a beecrypt.dll in Windows?
Brought to you by:
upuaut
I've been running into some difficulties trying to build beecrypt for Windows. Maybe the biggest problem has to do with these style struct definitions:
const hashFunction sha384 = {
.name = "SHA-384",
.paramsize = sizeof(sha384Param),
.blocksize = 128,
.digestsize = 48,
.reset = (hashFunctionReset) sha384Reset,
.update = (hashFunctionUpdate) sha384Update,
.digest = (hashFunctionDigest) sha384Digest
};
So far I haven't found a way to get VS 2010 to compile those.
I'm not sure if this means I need to compile using my Cygwin setup, my mingw setup, or something else.
View and moderate all "support-requests Discussion" comments posted by this user
Mark all as spam, and block user from posting to "Support Requests"
I got it to build with mingw and msys. My attempt to get a .lib file to give to VS2010 hasn't found a solution yet.
btw: sorry for multiple posts. the other 2 were because of me refreshing the page.