packages feed

wordpass-1.0.0.10: wordpass.cabal

name:                wordpass
version:             1.0.0.10
synopsis:            Dictionary-based password generator
description:         This script reads dict word lists and generates word-based passwords.
                     Not unlike <http://xkcd.com/936/ xkcd>.
                     .
                     Program also prints how many words have been read, and indicates estimated
                     password space size in bits.
                     .
                     Using just four words from default English dictionary of ~50k words will
                     give approximately 90 bits of entropy. Lucky speakers of languages with
                     rich inflection like Polish (over 3 million words) can easily up this to
                     over 110 bits of entropy.
homepage:            https://github.com/mgajda/wordpass
license:             BSD3
license-file:        LICENSE
author:              Michal J. Gajda
maintainer:          mjgajda@gmail.com
copyright:           Michal J. Gajda 
category:            Cryptography, System, Password, Tools
build-type:          Simple
extra-source-files:  README.md changelog stack.yaml
cabal-version:       >=1.10
stability:           stable
tested-with:         GHC==7.8.4,GHC==7.10.3,GHC==8.0.1,GHC==8.2.2

source-repository head
  type:     git
  location: https://github.com/mgajda/wordpass.git

executable wordpass
  main-is:             WordPass.hs
  other-modules:       Text.WordPass
  other-extensions:    OverlappingInstances, MultiParamTypeClasses, FlexibleInstances
  build-depends:       base          >=4.4  && <4.12,
                       text          >=1.1  && <1.4,
                       containers    >=0.5  && <0.6,
                       vector        >=0.10 && <0.13,
                       directory     >= 1.2 && <1.4,
                       optparse-applicative      >= 0.12 && <0.15,
                       unix-compat   >= 0.4 && <0.6,
                       deepseq       >= 1.3 && <1.5,
                       filepath      >= 1.3 && <1.5,
                       QuickCheck    >= 2.0 && <3.0
  ghc-options:         -O3 
  -- hs-source-dirs:      
  default-language:    Haskell2010

library
  exposed-modules:     Text.WordPass
  other-extensions:    OverlappingInstances, MultiParamTypeClasses, FlexibleInstances
  build-depends:       base          >=4.4  && <4.12,
                       text          >=1.1  && <1.4,
                       containers    >=0.5  && <0.6,
                       vector        >=0.10 && <0.13,
                       directory     >= 1.2 && <1.4,
                       unix-compat   >= 0.4 && <0.6,
                       deepseq       >= 1.3 && <1.5,
                       QuickCheck    >= 2.0 && <3.0,
                       filepath      >= 1.3 && <1.5
  ghc-options:         -O3 
  -- hs-source-dirs:      
  default-language:    Haskell2010