-- Initial paphragen.cabal generated by cabal init. For further -- documentation, see http://haskell.org/cabal/users-guide/ name: paphragen version: 0.1.0.0 synopsis: A passphrase generator. description: A passphrase is a password made with words instead of just letters and digits. The advantage over passwords is that they are easier to remember. The disadvantage is that they are quite long and people tend to overestimate their security. Most tools for password generation that we know just generate a random sequence of characters and cannot properly estimate the strength of a passphrase. `paphragen` is capable not only of generating passphrases from a given word list, it can also build such word lists given sufficient text input (e.g. books, news articles...). It also properly computes the strength of the generated password. A stream of random bytes can be used in order to achieve cryptographic-quality randomness. license: GPL-3 license-file: LICENSE author: Marcelo Garlet Millani maintainer: marcelogmillani@gmail.com -- copyright: category: Security build-type: Simple extra-source-files: ChangeLog.md cabal-version: >=1.10 executable paphragen main-is: Main.hs -- other-modules: -- other-extensions: build-depends: base >=4.9 && <4.10, containers, bytestring hs-source-dirs: src default-language: Haskell2010 source-repository head type: git location: https://github.com/mgmillani/paphragen