2018-12-06 22:03:38 -05:00
|
|
|
{-|
|
|
|
|
|
|
|
|
Module: Password
|
|
|
|
Description: a simple password manager
|
|
|
|
Copyright: (C) 2018 Jonathan Lamothe
|
|
|
|
License: LGPLv3 (or later)
|
|
|
|
Maintainer: jlamothe1980@gmail.com
|
|
|
|
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU Lesser General Public License as
|
|
|
|
published by the Free Software Foundation, either version 3 of the
|
|
|
|
License, or (at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful, but
|
|
|
|
WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
Lesser General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Lesser General Public
|
|
|
|
License along with this program. If not, see
|
|
|
|
<https://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
-}
|
|
|
|
|
2018-12-12 17:04:23 -05:00
|
|
|
{-# LANGUAGE TemplateHaskell #-}
|
|
|
|
|
2018-12-09 15:34:29 -05:00
|
|
|
module Password (
|
|
|
|
-- * Data Types
|
2018-12-18 14:19:19 -05:00
|
|
|
PWDatabase, PWData(..), PWPolicy (..), PWSalt,
|
2018-12-12 17:04:23 -05:00
|
|
|
-- ** Lenses
|
|
|
|
-- $lenses
|
2018-12-17 15:18:01 -05:00
|
|
|
-- *** PWData
|
|
|
|
pwPolicy, pwSalt,
|
|
|
|
-- *** PWPolicy
|
2018-12-12 17:38:10 -05:00
|
|
|
pwLength, pwUpper, pwLower, pwDigits, pwSpecial,
|
|
|
|
-- ** Default Instances
|
2018-12-18 14:19:19 -05:00
|
|
|
newPWData, newPWPolicy, newPWSalt,
|
2018-12-12 18:41:34 -05:00
|
|
|
-- * Functions
|
2018-12-17 14:30:32 -05:00
|
|
|
validatePWPolicy
|
2018-12-09 15:34:29 -05:00
|
|
|
) where
|
|
|
|
|
2018-12-12 18:41:34 -05:00
|
|
|
import Control.Lens (makeLenses, (^.))
|
2018-12-13 13:23:56 -05:00
|
|
|
import Data.Char (isUpper, isLower, isDigit, isAlphaNum)
|
2018-12-17 15:18:01 -05:00
|
|
|
import qualified Data.ByteString as B
|
|
|
|
import qualified Data.Map as M
|
2018-12-12 18:41:34 -05:00
|
|
|
import Data.Maybe (fromMaybe)
|
2018-12-17 16:09:40 -05:00
|
|
|
import System.Random (RandomGen, randoms, split)
|
2018-12-12 17:04:23 -05:00
|
|
|
|
2018-12-17 15:18:01 -05:00
|
|
|
-- | a mapping of service names to password data
|
|
|
|
type PWDatabase = M.Map String PWData
|
|
|
|
|
|
|
|
-- | data necessary to construct a password
|
|
|
|
data PWData = PWData
|
|
|
|
{ _pwPolicy :: PWPolicy
|
|
|
|
-- ^ the password policy
|
|
|
|
, _pwSalt :: B.ByteString
|
|
|
|
-- ^ random data used to generate the password
|
|
|
|
} deriving (Eq, Show)
|
|
|
|
|
2018-12-09 15:34:29 -05:00
|
|
|
-- | defines a password policy
|
|
|
|
data PWPolicy = PWPolicy
|
|
|
|
{ _pwLength :: Int
|
|
|
|
-- ^ password length
|
|
|
|
, _pwUpper :: Int
|
|
|
|
-- ^ the minimum number of upper case characters
|
|
|
|
, _pwLower :: Int
|
|
|
|
-- ^ the minimum number of lower case characters
|
|
|
|
, _pwDigits :: Int
|
|
|
|
-- ^ the minimum number of digits
|
|
|
|
, _pwSpecial :: Maybe Int
|
|
|
|
-- ^ the minimum number of non-alphanumeric characters (not allowed
|
|
|
|
-- if @"Nothing"@)
|
|
|
|
} deriving (Eq, Show)
|
|
|
|
|
2018-12-18 14:19:19 -05:00
|
|
|
-- | the "salt" used to generate a password
|
|
|
|
type PWSalt = B.ByteString
|
|
|
|
|
2018-12-12 17:04:23 -05:00
|
|
|
-- $lenses The following functions are automatically generated by
|
|
|
|
-- @makeLenses@. See the
|
|
|
|
-- [lens](http://hackage.haskell.org/package/lens) package for further
|
|
|
|
-- details.
|
|
|
|
|
|
|
|
makeLenses ''PWPolicy
|
2018-12-17 15:18:01 -05:00
|
|
|
makeLenses ''PWData
|
2018-12-12 17:04:23 -05:00
|
|
|
|
2018-12-18 14:04:45 -05:00
|
|
|
-- | builds a new @'PWData'@
|
|
|
|
newPWData
|
|
|
|
:: RandomGen g
|
|
|
|
=> g
|
|
|
|
-- ^ the random generator to use
|
|
|
|
-> (PWData, g)
|
|
|
|
-- ^ the result and new random generator
|
|
|
|
newPWData g = (result, g') where
|
|
|
|
result = PWData newPWPolicy salt
|
2018-12-18 14:19:19 -05:00
|
|
|
(salt, g') = newPWSalt g
|
|
|
|
|
|
|
|
-- | default password policy
|
|
|
|
newPWPolicy :: PWPolicy
|
|
|
|
newPWPolicy = PWPolicy 16 0 0 0 (Just 0)
|
2018-12-18 14:04:45 -05:00
|
|
|
|
2018-12-17 16:09:40 -05:00
|
|
|
-- | builds a new salt
|
2018-12-18 14:19:19 -05:00
|
|
|
newPWSalt
|
2018-12-17 16:09:40 -05:00
|
|
|
:: RandomGen g
|
|
|
|
=> g
|
|
|
|
-- ^ the random generator to use
|
2018-12-18 14:19:19 -05:00
|
|
|
-> (PWSalt, g)
|
|
|
|
-- ^ the result and new random generator
|
|
|
|
newPWSalt g = (result, g2) where
|
2018-12-17 16:09:40 -05:00
|
|
|
result = B.pack $ take 256 $ randoms g1
|
|
|
|
(g1, g2) = split g
|
|
|
|
|
2018-12-12 18:41:34 -05:00
|
|
|
-- | validates a password policy
|
|
|
|
validatePWPolicy
|
|
|
|
:: PWPolicy
|
|
|
|
-- ^ the policy being validated
|
2018-12-13 11:15:26 -05:00
|
|
|
-> Bool
|
|
|
|
-- ^ indicates whether or not the policy is valid
|
2018-12-17 00:04:43 -05:00
|
|
|
validatePWPolicy x = and
|
2018-12-13 11:48:37 -05:00
|
|
|
[ needed <= x^.pwLength
|
|
|
|
, x^.pwLength >= 0
|
|
|
|
, x^.pwUpper >= 0
|
|
|
|
, x^.pwLower >= 0
|
|
|
|
, x^.pwDigits >= 0
|
|
|
|
, fromMaybe 0 (x^.pwSpecial) >= 0
|
|
|
|
] where
|
|
|
|
needed = x^.pwUpper + x^.pwLower + x^.pwDigits + special
|
|
|
|
special = fromMaybe 0 $ x^.pwSpecial
|
2018-12-12 18:41:34 -05:00
|
|
|
|
2018-12-09 15:34:29 -05:00
|
|
|
--jl
|