README 854 B

1234567891011121314
  1. This library is a simple wrapper providing a convenient reentrant interface for
  2. the bcrypt password hashing algorithm implementation as provided by Solar
  3. Designer at http://www.openwall.com/crypt/. An exact copy of that source code
  4. is included in the crypt_blowfish subdirectory.
  5. The provided C interface is inspired in the bcrypt Python module that can be
  6. found at http://code.google.com/p/py-bcrypt/, and consists of a function to
  7. generate salts with the characteristic work factor parameter, one to generate
  8. password hashes which can also used to verify passwords and one designed
  9. specifically to verify passwords and avoid timing attacks. Please check the
  10. header bcrypt.h. It contains the prototypes and lots of comments with examples.
  11. All this code is released to the public domain under the terms of CC0. See the
  12. COPYING file for the legal text.