Name: bcrypt Version: 0.0.5 Cabal-Version: >= 1.6 Build-Type: Simple License: BSD3 License-File: LICENSE Copyright: Copyright (C) 2011 Andrew Miller Author: Andrew Miller Maintainer: andrew@amxl.com Category: Data, Cryptography Stability: experimental description: Haskell bindings to the bcrypt password hash. . Unlike other bindings already in existence, this package is designed to allow users to work directly with password hash strings that include information about the hashing algorithm, strength, and salt. This approach allows hashed passwords to be stored in a single field that can also be used by non-Haskell applications, and makes it easy to implement a policy of updating passwords hashed to an old policy next time the plaintext password is available. . Version 1.1.3 of the OpenWall C source for bcrypt is included in this package (). The only modification is that the flag which enables the use of assembler has been disabled. synopsis: Haskell bindings to the bcrypt password hash extra-source-files: csrc/crypt_blowfish.h csrc/crypt_gensalt.h csrc/crypt.h csrc/ow-crypt.h Library exposed-modules: Crypto.BCrypt include-dirs: csrc c-sources: csrc/crypt_blowfish.c csrc/crypt_blowfish_wrapper.c csrc/crypt_gensalt.c build-depends: bytestring >= 0.9, entropy < 0.4, base >= 3 && < 5 source-repository head type: git location: http://github.com/a1kmm/hs-bcrypt