libbcrypt
libbcrypt copied to clipboard
A c++ wrapper around bcrypt password hashing
Under bcrypt.c BCRYPT_HASHSIZE is 60. But then the function crypto_rn is called. That is transmitted in BF_Crypt function as size parameter (crypt_blowfish.c). In this function is required that size is...
In Windows with Visual Studio 2019, BUILD_SHARED_LIBS option active, I receive an error when compiling because bcrypt.lib is not created. This impedes using the library in larger projects where the...
I cloned and downloaded bcrypt as per instructions. I wrote this sample code: ``` #include #include int main(){ std::string password; std::cout
Hello, In reference to PR #13, I'm trying to compile this on windows with the following command - `cmake .. -G"Visual Studio 15 2017 Win64"`. I get the following results...