longshot-0.1.0.3: src/Crypto/Longshot/Const.hs
-- |
-- Module : Crypto.Longshot.Const
-- License : MIT
-- Maintainer : Francis Lim <thyeem@gmail.com>
-- Stability : experimental
-- Portability : unknown
--
-- How big is the search space? The space consists of two axes.
--
-- * @X-axis@: Number of characters available
-- * @Y-axis@: Search length of preimage to find
--
-- Note that it's proportional to @(X ^ Y)@ rather than @(X * Y)@
--
-- The values below are defined by default.
--
-- When not provided as options in CUI, the following values are used.
--
module Crypto.Longshot.Const where
-- | Default characters available in a preimage
defChars :: String
defChars = "0123456789"
-- | Default search length of preimage
defSearchLength :: Int
defSearchLength = 8
-- | Limit search length of preimage
limitSearchLength :: Int
limitSearchLength = 20
-- | Default value related to the number of sparks
defNumPrefix :: Int
defNumPrefix = 3
-- | Maximum number of actions in bruteforceN
maxNumBind :: Int
maxNumBind = limitSearchLength - defNumPrefix