Implementing Hash Blowfish C ++

Scripting languages ​​(Python / PHP / etc ...) include features (sometimes through extensions) that allow Blowfish to be used as a one-way password hash. I am trying to find a similar implementation for C ++, but all I came across is an encryption / decryption solution.

Can someone recommend a library for C ++ that provides the same functionality?

+4
source share
1 answer

There is a java version on jbcrypt . There is an article about bcrypt in openbsd.org and microsoft . You can find the source for bcrypt at http://www.openbsd.org/cgi-bin/cvsweb/src/lib/libc/crypt/ and get more information at http://www.openwall.com/crypt/

+6
source

All Articles