py-bcrypt instalando no win 7 python de 64 bits

Tentando instalar o py-bcrypt no win7. Python é de 64 bits. Primeiro erro não foi possível encontrar vcvarsall.bat. Pesquisei um pouco no Google que precisava instalar o mingw. instalei agora este

C:\tools\python_modules\py-bcrypt-0.2>python setup.py build -c mingw32
running build
running build_py
running build_ext
building 'bcrypt._bcrypt' extension
C:\MinGW\bin\gcc.exe -mno-cygwin -mdll -O -Wall -Ic:\Python27\include -Ic:\Python27\PC -c bcrypt/bcrypt_python.c -o b
d\temp.win-amd64-2.7\Release\bcrypt\bcrypt_python.o
bcrypt/bcrypt_python.c:29:26: error: expected declaration specifiers or '...' before 'u_int8_t'
bcrypt/bcrypt_python.c:29:38: error: expected declaration specifiers or '...' before 'u_int16_t'
bcrypt/bcrypt_python.c:29:49: error: expected declaration specifiers or '...' before 'u_int8_t'
bcrypt/bcrypt_python.c: In function 'bcrypt_encode_salt':
bcrypt/bcrypt_python.c:56:2: error: too many arguments to function 'encode_salt'
bcrypt/bcrypt_python.c:29:6: note: declared here
error: command 'gcc' failed with exit status 1

nenhuma idéia do que fazer a seguir. acho que não vou usar o bcrypt e tentar outra coisa. Alguma outra sugestão?

questionAnswers(7)

yourAnswerToTheQuestion