Name: bcrypt Version: 0.0.4 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. The OpenWall version of the C source for bcrypt (modified so it will build on all platforms without any assembler code) is included in this package. 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.3, base >= 3 && < 5 source-repository head type: git location: http://github.com/a1kmm/hs-bcrypt