How to encrypt password using bcrypt.
Hi,
I wonder how I can use bcrypt to encryption my data - passwords ?
I found old topic (link) but there no definite answer.
I found also bcrypt implementation in C on github (link) but maybe exists some other cryptography's library for Qt ?
Best,
Mikael .)
Re: How to encrypt password using bcrypt.
Re: How to encrypt password using bcrypt.
@anda_skoa - thx, I found QCA for Qt4 only..
Re: How to encrypt password using bcrypt.
You can build and use the bcrypt code you linked to with a little bit of juggling of data into and out of Qt objects as needed. If password hashing is all you require it is a simple and straightforward option. Another option is to use QCryptographicHash along with a salt value.